aboutsummaryrefslogtreecommitdiffstats
path: root/mail/em-format-html.c
diff options
context:
space:
mode:
authorRadek Doulik <rodo@ximian.com>2004-04-10 01:13:33 +0800
committerRadek Doulik <rodo@src.gnome.org>2004-04-10 01:13:33 +0800
commit19fed9bc8395928b12a7351e334b336148290440 (patch)
treed55ae5a946d7aae015305f6f4225d561aad8e807 /mail/em-format-html.c
parentc629a60b959e91c7158cce4d1f43ae82877f7add (diff)
downloadgsoc2013-evolution-19fed9bc8395928b12a7351e334b336148290440.tar
gsoc2013-evolution-19fed9bc8395928b12a7351e334b336148290440.tar.gz
gsoc2013-evolution-19fed9bc8395928b12a7351e334b336148290440.tar.bz2
gsoc2013-evolution-19fed9bc8395928b12a7351e334b336148290440.tar.lz
gsoc2013-evolution-19fed9bc8395928b12a7351e334b336148290440.tar.xz
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/em-format-html.c')
-rw-r--r--mail/em-format-html.c2
1 files changed, 1 insertions, 1 deletions
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);