diff options
Diffstat (limited to 'mail')
-rw-r--r-- | mail/ChangeLog | 5 | ||||
-rw-r--r-- | mail/em-format-html.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 092062b978..8e22a1277b 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,8 @@ +2004-04-09 Radek Doulik <rodo@ximian.com> + + * em-format-html.c (efh_format_headers): add width=16 height=16 to + rupert's image so that it doesn't flicker/move + 2004-04-09 Jeffrey Stedfast <fejj@ximian.com> * em-folder-selection.c (em_select_folder): Set the excluded bits diff --git a/mail/em-format-html.c b/mail/em-format-html.c index 8a6e1a10cf..914455e000 100644 --- a/mail/em-format-html.c +++ b/mail/em-format-html.c @@ -1677,7 +1677,7 @@ efh_format_headers(EMFormatHTML *efh, CamelStream *stream, CamelMedium *part) CamelMimePart *iconpart; classid = g_strdup_printf("icon:///em-format-html/%s/icon/header", emf->part_id->str); - camel_stream_printf(stream, "<td align=\"right\" valign=\"top\"><img src=\"%s\"></td>", classid); + camel_stream_printf(stream, "<td align=\"right\" valign=\"top\"><img width=16 height=16 src=\"%s\"></td>", classid); iconpart = em_format_html_file_part((EMFormatHTML *)emf, "image/png", EVOLUTION_ICONSDIR, "monkey-16.png"); if (iconpart) { em_format_add_puri(emf, sizeof(EMFormatPURI), classid, iconpart, efh_write_image); |