aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--mail/ChangeLog3
-rw-r--r--mail/mail-format.c4
2 files changed, 7 insertions, 0 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog
index f008f36f9b..9a080da8ce 100644
--- a/mail/ChangeLog
+++ b/mail/ChangeLog
@@ -1,5 +1,8 @@
2001-12-17 Jon Trowbridge <trow@ximian.com>
+ * mail-format.c (handle_text_plain_flowed): Set citation color to
+ black when we are printing.
+
* mail-format.c (attachment_header): Avoid embedding <object> tags
when we are printing.
(handle_multipart_signed): Don't do the click-for-info signature
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"