diff options
-rw-r--r-- | my-evolution/ChangeLog | 6 | ||||
-rw-r--r-- | my-evolution/e-summary-weather.c | 3 |
2 files changed, 8 insertions, 1 deletions
diff --git a/my-evolution/ChangeLog b/my-evolution/ChangeLog index b8f5d5d1b4..dad02ffafe 100644 --- a/my-evolution/ChangeLog +++ b/my-evolution/ChangeLog @@ -1,3 +1,9 @@ +2001-09-21 Dan Winship <danw@ximian.com> + + * e-summary-weather.c (weather_make_html): Add missing + width/height tags to the sunny/cloudy/etc images to make the page + render more smoothly. + 2001-09-21 Iain Holmes <iain@ximian.com> * e-summary-calendar.c (generate_html): If the appointment is in a diff --git a/my-evolution/e-summary-weather.c b/my-evolution/e-summary-weather.c index 1ab7a8c046..d58b58d6ce 100644 --- a/my-evolution/e-summary-weather.c +++ b/my-evolution/e-summary-weather.c @@ -103,7 +103,8 @@ weather_make_html (Weather *w) icon_name = icon_from_weather (w); string = g_string_new (""); g_string_sprintf (string, "<dd><img align=\"middle\" " - "src=\"%s\"> <b>", icon_name); + "src=\"%s\" width=\"16\" height=\"16\"> <b>", + icon_name); location = g_hash_table_lookup (locations_hash, w->location); #if 0 if (location == NULL) { |