Move S&T group switching shortcut to cmd + option + arrow up/down.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@39773 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Clemens Zeidler 2010-12-08 22:25:44 +00:00
parent 99aaa8c1fd
commit 6f61f09f4d

View File

@ -126,7 +126,8 @@ StackAndTile::KeyPressed(uint32 what, int32 key, int32 modifiers)
_StartSAT();
}
if (!SATKeyPressed() || what != B_KEY_DOWN)
if (!SATKeyPressed() || (modifiers & B_COMMAND_KEY) == 0
|| what != B_KEY_DOWN)
return false;
const int kArrowKeyUp = 87;