diff options
author | Jon Trowbridge <trow@ximian.com> | 2001-12-18 05:32:34 +0800 |
---|---|---|
committer | Jon Trowbridge <trow@src.gnome.org> | 2001-12-18 05:32:34 +0800 |
commit | d39ecffd6d964357c55bd6cebc2cc4bb9fd4f547 (patch) | |
tree | 2943d3906b63045fb8226996c9284efb52e0280b /mail/mail-format.c | |
parent | 79d83995442cf9958cb382a2b949c4154b995ef9 (diff) | |
download | gsoc2013-evolution-d39ecffd6d964357c55bd6cebc2cc4bb9fd4f547.tar gsoc2013-evolution-d39ecffd6d964357c55bd6cebc2cc4bb9fd4f547.tar.gz gsoc2013-evolution-d39ecffd6d964357c55bd6cebc2cc4bb9fd4f547.tar.bz2 gsoc2013-evolution-d39ecffd6d964357c55bd6cebc2cc4bb9fd4f547.tar.lz gsoc2013-evolution-d39ecffd6d964357c55bd6cebc2cc4bb9fd4f547.tar.xz gsoc2013-evolution-d39ecffd6d964357c55bd6cebc2cc4bb9fd4f547.tar.zst gsoc2013-evolution-d39ecffd6d964357c55bd6cebc2cc4bb9fd4f547.zip |
Set citation color to black when we are printing.
2001-12-17 Jon Trowbridge <trow@ximian.com>
* mail-format.c (handle_text_plain_flowed): Set citation color to
black when we are printing.
svn path=/trunk/; revision=15140
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" |