diff options
Diffstat (limited to 'mail/mail-format.c')
-rw-r--r-- | mail/mail-format.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/mail/mail-format.c b/mail/mail-format.c index b3bd1379b2..76fa65e2a1 100644 --- a/mail/mail-format.c +++ b/mail/mail-format.c @@ -1250,6 +1250,10 @@ handle_text_plain_flowed (char *buf, MailDisplay *md, GtkHTML *html, GtkHTMLStre char *text, *line, *eol, *p; int prevquoting = 0, quoting, len, br_pending = 0; guint32 citation_color = mail_config_get_citation_color (); + + /* When printing, do citations in black -- grey tends to be hard to read. */ + if (md->printing) + citation_color = 0xffffff; mail_html_write (html, stream, "\n<!-- text/plain, flowed -->\n" |