diff options
author | Srinivasa Ragavan <sragavan@novell.com> | 2009-02-03 17:11:41 +0800 |
---|---|---|
committer | Srinivasa Ragavan <sragavan@src.gnome.org> | 2009-02-03 17:11:41 +0800 |
commit | cf9d118d48473c0fe51e2d6514914da18748aa4b (patch) | |
tree | bc5467bf2eeb798f30df4f696fb0f57fcc2144a6 /mail/em-format-html.c | |
parent | bc0fdcbdeef4ec5fd72715766c64492b82979ee0 (diff) | |
download | gsoc2013-evolution-cf9d118d48473c0fe51e2d6514914da18748aa4b.tar.gz gsoc2013-evolution-cf9d118d48473c0fe51e2d6514914da18748aa4b.tar.zst gsoc2013-evolution-cf9d118d48473c0fe51e2d6514914da18748aa4b.zip |
** Fix for bug #569986
2009-02-03 Srinivasa Ragavan <sragavan@novell.com>
** Fix for bug #569986
* mail/em-format-html-print.c: Handle printers while doing attachment
bar rendering.
* mail/em-format-html.c:
* mail/em-format.c:
* mail/em-format.h:
svn path=/trunk/; revision=37218
Diffstat (limited to 'mail/em-format-html.c')
-rw-r--r-- | mail/em-format-html.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/em-format-html.c b/mail/em-format-html.c index d6f52275c8..b6ad57c71b 100644 --- a/mail/em-format-html.c +++ b/mail/em-format-html.c @@ -1268,7 +1268,7 @@ efh_format_exec (struct _format_msg *m) if (handle) handle->handler((EMFormat *)m->format, (CamelStream *)m->estream, (CamelMimePart *)m->message, handle); handle = em_format_find_handler((EMFormat *)m->format, "x-evolution/message/post-header-closure"); - if (handle) + if (handle && !((EMFormat *)m->format)->print) handle->handler((EMFormat *)m->format, (CamelStream *)m->estream, (CamelMimePart *)m->message, handle); } |