diff options
author | William Jon McCann <william.jon.mccann@gmail.com> | 2013-06-26 11:16:12 -0400 |
---|---|---|
committer | William Jon McCann <william.jon.mccann@gmail.com> | 2013-06-26 11:16:12 -0400 |
commit | 7e3a494fac62140f466fc43f6cc061215953e9b1 (patch) | |
tree | 6e7ced75ce242f088af51e9626cb3ecbf2236e92 /gdk | |
parent | e8147d15f74e62047c84eb95e393449722198d89 (diff) | |
download | gtk+-7e3a494fac62140f466fc43f6cc061215953e9b1.tar.gz |
Deprecate and ignore gtk-enable-mnemonics and gtk-auto-mnemonics" properties
They are both enabled by default.
Diffstat (limited to 'gdk')
-rw-r--r-- | gdk/wayland/gdkscreen-wayland.c | 1 | ||||
-rw-r--r-- | gdk/win32/gdkproperty-win32.c | 1 | ||||
-rw-r--r-- | gdk/x11/gdksettings.c | 2 |
3 files changed, 0 insertions, 4 deletions
diff --git a/gdk/wayland/gdkscreen-wayland.c b/gdk/wayland/gdkscreen-wayland.c index 490d145183..1593b61f18 100644 --- a/gdk/wayland/gdkscreen-wayland.c +++ b/gdk/wayland/gdkscreen-wayland.c @@ -483,7 +483,6 @@ static TranslationEntry translations[] = { { "org.gnome.desktop.interface", "cursor-blink-timeout", "gtk-cursor-blink-timeout", G_TYPE_INT, { .i = 3600 } }, { "org.gnome.desktop.interface", "gtk-im-module", "gtk-im-module", G_TYPE_STRING, { .s = "simple" } }, { "org.gnome.desktop.interface", "enable-animations", "gtk-enable-animations", G_TYPE_BOOLEAN, { .b = TRUE } }, - { "org.gnome.desktop.interface", "automatic-mnemonics", "gtk-auto-mnemonics", G_TYPE_BOOLEAN, { .b = TRUE } }, { "org.gnome.desktop.interface", "toolbar-style", "gtk-toolbar-style", G_TYPE_STRING, { .s = "both-horiz"} }, { "org.gnome.desktop.interface", "toolbar-icons-size", "gtk-toolbar-icon-size", G_TYPE_STRING, { .s = "large"} }, { "org.gnome.settings-daemon.peripherals.mouse", "double-click", "gtk-double-click-time", G_TYPE_INT, { .i = 250 } }, diff --git a/gdk/win32/gdkproperty-win32.c b/gdk/win32/gdkproperty-win32.c index e73db692c6..16ae4b2dfe 100644 --- a/gdk/win32/gdkproperty-win32.c +++ b/gdk/win32/gdkproperty-win32.c @@ -334,7 +334,6 @@ _gdk_win32_window_delete_property (GdkWindow *window, "Net/FallbackIconTheme\0" "gtk-fallback-icon-theme\0" "Gtk/TouchscreenMode\0" "gtk-touchscreen-mode\0" "Gtk/EnableAccels\0" "gtk-enable-accels\0" - "Gtk/EnableMnemonics\0" "gtk-enable-mnemonics\0" "Gtk/ScrolledWindowPlacement\0" "gtk-scrolled-window-placement\0" "Gtk/IMModule\0" "gtk-im-module\0" "Fontconfig/Timestamp\0" "gtk-fontconfig-timestamp\0" diff --git a/gdk/x11/gdksettings.c b/gdk/x11/gdksettings.c index 511ef393cd..ddcbde3b8a 100644 --- a/gdk/x11/gdksettings.c +++ b/gdk/x11/gdksettings.c @@ -58,7 +58,6 @@ static const struct { {"Net/FallbackIconTheme", "gtk-fallback-icon-theme"}, {"Gtk/TouchscreenMode", "gtk-touchscreen-mode"}, {"Gtk/EnableAccels", "gtk-enable-accels"}, - {"Gtk/EnableMnemonics", "gtk-enable-mnemonics"}, {"Gtk/ScrolledWindowPlacement", "gtk-scrolled-window-placement"}, {"Gtk/IMModule", "gtk-im-module"}, {"Fontconfig/Timestamp", "gtk-fontconfig-timestamp"}, @@ -66,7 +65,6 @@ static const struct { {"Net/EnableInputFeedbackSounds", "gtk-enable-input-feedback-sounds"}, {"Net/EnableEventSounds", "gtk-enable-event-sounds"}, {"Gtk/CursorBlinkTimeout", "gtk-cursor-blink-timeout"}, - {"Gtk/AutoMnemonics", "gtk-auto-mnemonics"}, {"Gtk/VisibleFocus", "gtk-visible-focus"}, {"Gtk/ShellShowsAppMenu", "gtk-shell-shows-app-menu"}, {"Gtk/ShellShowsMenubar", "gtk-shell-shows-menubar"}, |