diff src/gtknotify.c @ 9049:f01eef2c264a

[gaim-migrate @ 9825] Split Ignore Formatting into Ignore Font, Ignore Colors and whatever else. Is that cool? I was never really comfortable with removing this in the first place. Someone should test this. G'night. committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Mon, 24 May 2004 04:29:40 +0000
parents 230cf4032e3d
children 5667b1cdcb53
line wrap: on
line diff
--- a/src/gtknotify.c	Mon May 24 00:46:12 2004 +0000
+++ b/src/gtknotify.c	Mon May 24 04:29:40 2004 +0000
@@ -365,11 +365,20 @@
 
 
 	/* Add the text to the gtkimhtml */
+#if 1 /* PREFSLASH04 */
+	if (gaim_prefs_get_bool("/gaim/gtk/conversations/ignore_colors"))
+		options ^= GTK_IMHTML_NO_COLOURS;
+	if (gaim_prefs_get_bool("/gaim/gtk/conversations/ignore_fonts"))
+		options ^= GTK_IMHTML_NO_FONTS;
+	if (gaim_prefs_get_bool("/gaim/gtk/conversations/ignore_font_sizes"))
+		options ^= GTK_IMHTML_NO_SIZES;
+#else
 	if (gaim_prefs_get_bool("/gaim/gtk/conversations/ignore_formatting")) {
 		options ^= GTK_IMHTML_NO_COLOURS;
 		options ^= GTK_IMHTML_NO_FONTS;
 		options ^= GTK_IMHTML_NO_SIZES;
 	}
+#endif
 
 	options ^= GTK_IMHTML_NO_COMMENTS;
 	options ^= GTK_IMHTML_NO_TITLE;