diff options
author | Radek Doulik <rodo@ximian.com> | 2003-11-24 08:35:57 +0800 |
---|---|---|
committer | Radek Doulik <rodo@src.gnome.org> | 2003-11-24 08:35:57 +0800 |
commit | ff31ff3b84015b5d5b164aa7a64966fbf5c7b368 (patch) | |
tree | d315a45112adec3e43bc6844dbf4a02ec665cdd4 /mail/em-format.c | |
parent | 8cd8035af10d3d1c8f86e206ad9ad7dce5eca4a2 (diff) | |
download | gsoc2013-evolution-ff31ff3b84015b5d5b164aa7a64966fbf5c7b368.tar.gz gsoc2013-evolution-ff31ff3b84015b5d5b164aa7a64966fbf5c7b368.tar.zst gsoc2013-evolution-ff31ff3b84015b5d5b164aa7a64966fbf5c7b368.zip |
do not use horizonal rule, attachment content is now inside simple frame
2003-11-24 Radek Doulik <rodo@ximian.com>
* em-format.c (emf_multipart_mixed): do not use horizonal rule,
attachment content is now inside simple frame
* em-format-html.c (efh_text_plain): add 6 points around text
plain content and frame it
(efh_text_html): frame text/html
(efh_format_do): fix body tag, set bgcolor
(em_format_html_format_headers): do not put headers into own
table, content body is framed now instead
(efh_format_message): update for headers/body changes
* em-format-html-display.c (efhd_format_attachment): put
additional vertical space around attachment button
svn path=/trunk/; revision=23474
Diffstat (limited to 'mail/em-format.c')
-rw-r--r-- | mail/em-format.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/mail/em-format.c b/mail/em-format.c index b5f24716d9..208b4b79b0 100644 --- a/mail/em-format.c +++ b/mail/em-format.c @@ -980,9 +980,6 @@ emf_multipart_mixed(EMFormat *emf, CamelStream *stream, CamelMimePart *part, con nparts = camel_multipart_get_number(mp); for (i = 0; i < nparts; i++) { - if (i != 0) - camel_stream_printf (stream, "<hr>\n"); - part = camel_multipart_get_part(mp, i); em_format_part(emf, stream, part); } |