From b9e1d0f5a61a88e7cc9feaaa6bf931805ba96d63 Mon Sep 17 00:00:00 2001 From: Dan Winship Date: Fri, 21 Sep 2001 21:44:55 +0000 Subject: 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 --- my-evolution/e-summary-weather.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'my-evolution/e-summary-weather.c') 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, "
 ", icon_name); + "src=\"%s\" width=\"16\" height=\"16\"> ", + icon_name); location = g_hash_table_lookup (locations_hash, w->location); #if 0 if (location == NULL) { -- cgit