From afebdb50fa8db908d9acc616a4ac5e0d7bc103f0 Mon Sep 17 00:00:00 2001 From: "Carlos R. Mafra" Date: Sat, 11 Sep 2010 16:47:57 +0200 Subject: [PATCH] WPrefs: Add MinimizeAllKey shortcut configuration --- WPrefs.app/KeyboardShortcuts.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/WPrefs.app/KeyboardShortcuts.c b/WPrefs.app/KeyboardShortcuts.c index 0a8b9cf2..13b84447 100644 --- a/WPrefs.app/KeyboardShortcuts.c +++ b/WPrefs.app/KeyboardShortcuts.c @@ -71,6 +71,7 @@ static char *keyOptions[] = { "HideKey", "HideOthersKey", "MiniaturizeKey", + "MinimizeAllKey", "CloseKey", "MaximizeKey", "VMaximizeKey", @@ -470,6 +471,7 @@ static void createPanel(Panel * p) WMAddListItem(panel->actLs, _("Hide active application")); WMAddListItem(panel->actLs, _("Hide other applications")); WMAddListItem(panel->actLs, _("Miniaturize active window")); + WMAddListItem(panel->actLs, _("Miniaturize all windows")); WMAddListItem(panel->actLs, _("Close active window")); WMAddListItem(panel->actLs, _("Maximize active window")); WMAddListItem(panel->actLs, _("Maximize active window vertically"));