summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2011-03-13 16:32:44 -0400
committerMatthias Clasen <mclasen@redhat.com>2011-03-13 16:34:36 -0400
commitfae70a610e5824c52853532951cbe85030aa4136 (patch)
tree0c50587391c58ce957eca907aa2d94a241e9ff4a
parent0d22c35d72c57e0217c426d4f4ac77f7feba9713 (diff)
downloadmetacity-fae70a610e5824c52853532951cbe85030aa4136.tar.gz
Disable 'Show desktop' keybinding by default
The keybindings are shared with gnome-shell, and since the shell no longer exposes minimization as a very visible feature, this keybinding has a dramatic and unexpected effect. https://bugzilla.gnome.org/show_bug.cgi?id=643609
-rw-r--r--src/include/all-keybindings.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/all-keybindings.h b/src/include/all-keybindings.h
index 7a59354d..9d3540a5 100644
--- a/src/include/all-keybindings.h
+++ b/src/include/all-keybindings.h
@@ -185,7 +185,7 @@ keybind (cycle_panels_backward, handle_cycle, META_TAB_LIST_DOCKS,
/***********************************/
-keybind (show_desktop, handle_show_desktop, 0, 0, "<Control><Alt>d",
+keybind (show_desktop, handle_show_desktop, 0, 0, NULL,
_("Hide all normal windows"))
keybind (panel_main_menu, handle_panel,
META_KEYBINDING_ACTION_PANEL_MAIN_MENU, 0, "<Alt>F1",
@@ -266,7 +266,7 @@ keybind (unmaximize, handle_unmaximize, 0, BINDING_PER_WINDOW, "<Alt>F5",
_("Restore window"))
keybind (toggle_shaded, handle_toggle_shaded, 0, BINDING_PER_WINDOW, NULL,
_("Toggle shaded state"))
-keybind (minimize, handle_minimize, 0, BINDING_PER_WINDOW, "<Alt>F9",
+keybind (minimize, handle_minimize, 0, BINDING_PER_WINDOW, NULL,
_("Minimize window"))
keybind (close, handle_close, 0, BINDING_PER_WINDOW, "<Alt>F4",
_("Close window"))