[gtk+] Make ignored settings be set to false by default



commit a02f2c42917a6bae8ef836a26f1afc54879fc96b
Author: William Jon McCann <william jon mccann gmail com>
Date:   Wed Jun 26 22:18:01 2013 -0400

    Make ignored settings be set to false by default

 gtk/gtksettings.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/gtk/gtksettings.c b/gtk/gtksettings.c
index a389d6a..8f75eea 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);


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]