aboutsummaryrefslogtreecommitdiffstats
path: root/my-evolution/e-summary-weather.c
diff options
context:
space:
mode:
authorDan Winship <danw@src.gnome.org>2001-09-22 05:44:55 +0800
committerDan Winship <danw@src.gnome.org>2001-09-22 05:44:55 +0800
commitb9e1d0f5a61a88e7cc9feaaa6bf931805ba96d63 (patch)
treedf6889b643d3b2b016f5fff4112d981ef1312303 /my-evolution/e-summary-weather.c
parent3a3e6ff3e6f683484223d0deb49c17630ccc1e2a (diff)
downloadgsoc2013-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/e-summary-weather.c')
-rw-r--r--my-evolution/e-summary-weather.c3
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\">&#160;<b>", icon_name);
+ "src=\"%s\" width=\"16\" height=\"16\">&#160;<b>",
+ icon_name);
location = g_hash_table_lookup (locations_hash, w->location);
#if 0
if (location == NULL) {