[haiku-commits] r40085 - haiku/trunk/src/apps/deskbar

  • From: leavengood@xxxxxxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Mon, 3 Jan 2011 04:30:00 +0100 (CET)

Author: leavengood
Date: 2011-01-03 04:30:00 +0100 (Mon, 03 Jan 2011)
New Revision: 40085
Changeset: http://dev.haiku-os.org/changeset/40085
Ticket: http://dev.haiku-os.org/ticket/6069

Modified:
   haiku/trunk/src/apps/deskbar/ExpandoMenuBar.cpp
Log:
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.


Modified: haiku/trunk/src/apps/deskbar/ExpandoMenuBar.cpp
===================================================================
--- haiku/trunk/src/apps/deskbar/ExpandoMenuBar.cpp     2011-01-03 00:44:40 UTC 
(rev 40084)
+++ haiku/trunk/src/apps/deskbar/ExpandoMenuBar.cpp     2011-01-03 03:30:00 UTC 
(rev 40085)
@@ -307,7 +307,7 @@
                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();


Other related posts:

  • » [haiku-commits] r40085 - haiku/trunk/src/apps/deskbar - leavengood