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:
@ -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
|
||||
|
||||
@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user