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
This commit is contained in:
Dan Winship
2001-09-21 21:44:55 +00:00
parent 3a3e6ff3e6
commit b9e1d0f5a6
2 changed files with 8 additions and 1 deletions

View File

@ -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

View File

@ -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) {