From e62cadc3745b13bf309b149df766f1df63e393e4 Mon Sep 17 00:00:00 2001 From: Ryan Leavengood Date: Mon, 3 Jan 2011 03:30:00 +0000 Subject: [PATCH] Apply the patch from #6069 which makes the Vulcan Death Grip Ctrl+Shift+Cmd. I assume if this wasn't wanted the ticket would have been closed, and I think this is fine. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@40085 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/apps/deskbar/ExpandoMenuBar.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apps/deskbar/ExpandoMenuBar.cpp b/src/apps/deskbar/ExpandoMenuBar.cpp index b390f06b4b..0fd4483356 100644 --- a/src/apps/deskbar/ExpandoMenuBar.cpp +++ b/src/apps/deskbar/ExpandoMenuBar.cpp @@ -307,7 +307,7 @@ TExpandoMenuBar::MouseDown(BPoint where) message->FindInt32("modifiers", &modifiers); if ((modifiers & B_COMMAND_KEY) != 0 - && (modifiers & B_OPTION_KEY) != 0 + && (modifiers & B_CONTROL_KEY) != 0 && (modifiers & B_SHIFT_KEY) != 0) { const BList* teams = item->Teams(); int32 teamCount = teams->CountItems();