diff options
author | Dan Winship <danw@src.gnome.org> | 2001-09-22 05:44:55 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2001-09-22 05:44:55 +0800 |
commit | b9e1d0f5a61a88e7cc9feaaa6bf931805ba96d63 (patch) | |
tree | df6889b643d3b2b016f5fff4112d981ef1312303 /my-evolution | |
parent | 3a3e6ff3e6f683484223d0deb49c17630ccc1e2a (diff) | |
download | gsoc2013-evolution-b9e1d0f5a61a88e7cc9feaaa6bf931805ba96d63.tar gsoc2013-evolution-b9e1d0f5a61a88e7cc9feaaa6bf931805ba96d63.tar.gz gsoc2013-evolution-b9e1d0f5a61a88e7cc9feaaa6bf931805ba96d63.tar.bz2 gsoc2013-evolution-b9e1d0f5a61a88e7cc9feaaa6bf931805ba96d63.tar.lz gsoc2013-evolution-b9e1d0f5a61a88e7cc9feaaa6bf931805ba96d63.tar.xz gsoc2013-evolution-b9e1d0f5a61a88e7cc9feaaa6bf931805ba96d63.tar.zst gsoc2013-evolution-b9e1d0f5a61a88e7cc9feaaa6bf931805ba96d63.zip |
Add missing width/height tags to the sunny/cloudy/etc images to make the
* 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.
svn path=/trunk/; revision=13070
Diffstat (limited to 'my-evolution')
-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) { |