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/e-summary-weather.c | |
parent | 3a3e6ff3e6f683484223d0deb49c17630ccc1e2a (diff) | |
download | gsoc2013-evolution-b9e1d0f5a61a88e7cc9feaaa6bf931805ba96d63.tar.gz 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/e-summary-weather.c')
-rw-r--r-- | my-evolution/e-summary-weather.c | 3 |
1 files changed, 2 insertions, 1 deletions
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) { |