Skip to content

Commit

Permalink
shift-[1234567890] on a usb keyboard should not send function keys
Browse files Browse the repository at this point in the history
  • Loading branch information
ddrown committed Jul 30, 2012
1 parent 4b11a3e commit 06a4438
Showing 1 changed file with 0 additions and 6 deletions.
Expand Up @@ -270,12 +270,6 @@ && sendFunctionKey(keyCode))
key = keyAsControl(key);
}

// handle pressing f-keys
if ((hardKeyboard && !hardKeyboardHidden)
&& (curMetaState & KeyEvent.META_SHIFT_ON) != 0
&& sendFunctionKey(keyCode))
return true;

if (key < 0x80) {
bridge.transport.write(key);
} else {
Expand Down

0 comments on commit 06a4438

Please sign in to comment.