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
This commit is contained in:
committed by
Jon Trowbridge
parent
79d8399544
commit
d39ecffd6d
@ -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
|
||||
|
||||
@ -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"
|
||||
|
||||
Reference in New Issue
Block a user