diff options
author | Not Zed <NotZed@Ximian.com> | 2003-05-06 08:04:02 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2003-05-06 08:04:02 +0800 |
commit | 3bf9a7df8897f91d251a70b9c67e6f0bdf1e0d13 (patch) | |
tree | ae3ee0e6461862279e62e9047aeaab9321c58271 | |
parent | da09882000b58488e6593a170285fb5d3de58aaa (diff) | |
download | gsoc2013-evolution-3bf9a7df8897f91d251a70b9c67e6f0bdf1e0d13.tar.gz gsoc2013-evolution-3bf9a7df8897f91d251a70b9c67e6f0bdf1e0d13.tar.zst gsoc2013-evolution-3bf9a7df8897f91d251a70b9c67e6f0bdf1e0d13.zip |
** See bug #42294.
2003-05-05 Not Zed <NotZed@Ximian.com>
** See bug #42294.
* mail-config.c (config_write_fonts): Also set the custom font
style for *BonoboPlug*GtkHTML.
svn path=/trunk/; revision=21109
-rw-r--r-- | mail/ChangeLog | 7 | ||||
-rw-r--r-- | mail/mail-config.c | 3 |
2 files changed, 9 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 864c7320e9..9e98b6f4ed 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,10 @@ +2003-05-05 Not Zed <NotZed@Ximian.com> + + ** See bug #42294. + + * mail-config.c (config_write_fonts): Also set the custom font + style for *BonoboPlug*GtkHTML. + 2003-05-05 Ettore Perazzoli <ettore@ximian.com> * mail-session.c (request_password): Set OK as the default diff --git a/mail/mail-config.c b/mail/mail-config.c index 32a1226012..ed789204ef 100644 --- a/mail/mail-config.c +++ b/mail/mail-config.c @@ -467,7 +467,8 @@ config_write_fonts (void) fprintf (rc, "}\n\n"); fprintf (rc, "widget \"*.MailDisplay.*.GtkHTML\" style \"evolution-mail-custom-fonts\"\n"); - fprintf (rc, "widget \"*.FolderBrowser.*.GtkHTML.\" style \"evolution-mail-custom-fonts\"\n"); + fprintf (rc, "widget \"*.FolderBrowser.*.GtkHTML\" style \"evolution-mail-custom-fonts\"\n"); + fprintf (rc, "widget \"*.BonoboPlug.*.GtkHTML\" style \"evolution-mail-custom-fonts\"\n"); if (fclose (rc) == 0) gtk_rc_reparse_all (); |