diff options
author | William Jon McCann <william.jon.mccann@gmail.com> | 2013-06-26 22:18:01 -0400 |
---|---|---|
committer | William Jon McCann <william.jon.mccann@gmail.com> | 2013-06-27 17:02:58 -0400 |
commit | a02f2c42917a6bae8ef836a26f1afc54879fc96b (patch) | |
tree | 82a8d3335e14fe1c2cffb540703dac177f071b67 /gtk/gtksettings.c | |
parent | b5863f38a052054b25d27f1aa04065ee2092c0b4 (diff) | |
download | gtk+-a02f2c42917a6bae8ef836a26f1afc54879fc96b.tar.gz |
Make ignored settings be set to false by default
Diffstat (limited to 'gtk/gtksettings.c')
-rw-r--r-- | gtk/gtksettings.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/gtksettings.c b/gtk/gtksettings.c index a389d6a989..8f75eea0e5 100644 --- a/gtk/gtksettings.c +++ b/gtk/gtksettings.c @@ -646,7 +646,7 @@ gtk_settings_class_init (GtkSettingsClass *class) g_param_spec_boolean ("gtk-show-input-method-menu", P_("Show the 'Input Methods' menu"), P_("Whether the context menus of entries and text views should offer to change the input method"), - TRUE, + FALSE, GTK_PARAM_READWRITE), NULL); g_assert (result == PROP_SHOW_INPUT_METHOD_MENU); @@ -660,7 +660,7 @@ gtk_settings_class_init (GtkSettingsClass *class) g_param_spec_boolean ("gtk-show-unicode-menu", P_("Show the 'Insert Unicode Control Character' menu"), P_("Whether the context menus of entries and text views should offer to insert control characters"), - TRUE, + FALSE, GTK_PARAM_READWRITE), NULL); g_assert (result == PROP_SHOW_UNICODE_MENU); |