Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Commit

Permalink
rhbz961163 prevent Shift+W g triggering key-shortcut mode
Browse files Browse the repository at this point in the history
  • Loading branch information
davidmason committed May 10, 2013
1 parent 198fb22 commit 2598c30
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -131,7 +131,7 @@ public void onPreviewNativeEvent(NativePreviewEvent nativeEvent)
else
{
Keys pressedKeys = event.createKeys(evt);
boolean isAliasKeyTriggered = Keys.ALIAS_KEY == (pressedKeys.getModifiers() + pressedKeys.getKeyCode());
boolean isAliasKeyTriggered = Keys.ALIAS_KEY == (pressedKeys.getModifiers() | pressedKeys.getKeyCode());

if (isAliasKeyTriggered)
{
Expand Down

0 comments on commit 2598c30

Please sign in to comment.