diff options
author | Radek Doulik <rodo@ximian.com> | 2004-04-10 01:13:33 +0800 |
---|---|---|
committer | Radek Doulik <rodo@src.gnome.org> | 2004-04-10 01:13:33 +0800 |
commit | 19fed9bc8395928b12a7351e334b336148290440 (patch) | |
tree | d55ae5a946d7aae015305f6f4225d561aad8e807 /mail | |
parent | c629a60b959e91c7158cce4d1f43ae82877f7add (diff) | |
download | gsoc2013-evolution-19fed9bc8395928b12a7351e334b336148290440.tar.gz gsoc2013-evolution-19fed9bc8395928b12a7351e334b336148290440.tar.zst gsoc2013-evolution-19fed9bc8395928b12a7351e334b336148290440.zip |
add width=16 height=16 to rupert's image so that it doesn't flicker/move
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
svn path=/trunk/; revision=25385
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); |