One thing you can try is to change the size of the background
image in weatherforecast.
First, back up your copy of weatherforecast.py. Then, open
weatherforecast.py with a text editor and look for a line
like this (in my file, it's line 118):
self.buffer=adesklets.create_image(500,120)
The first value sets the width, the second sets the height.
Try increasing that second value. You will also need to
change the value in the line that reads
adesklets.window_resize(self.window_w,120)
(in my file, line 133)
Make that value the same. If you changed the first 120 to
150, increase this 120 to 150 as well.
There's one more place you have to change. It's the line (in
my file, line 162) that reads
adesklets.image_fill_rectangle(0,0,self.window_w,120)
This number should be the same as the other two; in my
example, it's now 150. Save your file and restart the
desklet. I think that will take care of the problem.