diff options
author | Matthias Clasen <mclasen@localhost.localdomain> | 2006-04-30 06:10:37 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2006-04-30 06:10:37 +0000 |
commit | a5f63de17bea5673910d79e273d1cab7764a8ca2 (patch) | |
tree | be2c322fb1e22bdd1570b3386df5f1470686e8d8 /gtk/gtksettings.c | |
parent | bf937f76e5b875dceea286e05b9fb0cfe1f01edf (diff) | |
download | gtk+-a5f63de17bea5673910d79e273d1cab7764a8ca2.tar.gz |
Fix problems with setting symbolic colors from rc files. (#338345,
2006-04-30 Matthias Clasen <mclasen@localhost.localdomain>
Fix problems with setting symbolic colors from rc files.
(#338345, Benjamin Berg)
* gtk/gtkrc.c (gtk_rc_settings_changed, gtk_rc_font_name_changed)
(gtk_rc_color_hash_changed, gtk_rc_reparse_all_for_settings): Don't
freeze notification for settings changes while parsing; instead
manually avoid recursion, and update the color hashes.
Diffstat (limited to 'gtk/gtksettings.c')
-rw-r--r-- | gtk/gtksettings.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtksettings.c b/gtk/gtksettings.c index ca0deb6fdc..05e300e43a 100644 --- a/gtk/gtksettings.c +++ b/gtk/gtksettings.c @@ -488,7 +488,7 @@ gtk_settings_class_init (GtkSettingsClass *class) g_param_spec_string ("gtk-color-scheme", P_("Color scheme"), P_("A palette of named colors for use in themes"), - "foreground:black\nbackground:gray", + "", GTK_PARAM_READWRITE), NULL); |