diff options
-rw-r--r-- | mail/ChangeLog | 8 | ||||
-rw-r--r-- | mail/em-format-html.c | 2 |
2 files changed, 9 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index c36c6d7873..bdff98881a 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,11 @@ +2008-05-05 Matthew Barnes <mbarnes@redhat.com> + + ** Fixes bug #531426 + + * em-format-html.c (efh_format_headers): + Display face header images at 48x48 instead of 64x64. + Patch from Roland Clobus. + 2008-05-04 Matthew Barnes <mbarnes@redhat.com> * mail-component.c (mail_component_show_logger): diff --git a/mail/em-format-html.c b/mail/em-format-html.c index 53a6ffc8d8..12fd050157 100644 --- a/mail/em-format-html.c +++ b/mail/em-format-html.c @@ -2003,7 +2003,7 @@ efh_format_headers(EMFormatHTML *efh, CamelStream *stream, CamelMedium *part) part = camel_mime_part_new (); camel_mime_part_set_content ((CamelMimePart *) part, (const char *) face_header_value, face_header_len, "image/png"); classid = g_strdup_printf("icon:///em-format-html/face/photo/header"); - camel_stream_printf(stream, "<td align=\"right\" valign=\"top\"><img width=64 src=\"%s\"></td>", classid); + camel_stream_printf(stream, "<td align=\"right\" valign=\"top\"><img width=48 src=\"%s\"></td>", classid); em_format_add_puri(emf, sizeof(EMFormatPURI), classid, part, efh_write_image); camel_object_unref(part); } |