remove hack to consider apple key as prefix

This commit is contained in:
Andrew Dolgov 2008-08-11 08:32:41 +01:00
parent 1cce3aca13
commit fe3320d2bd
1 changed files with 2 additions and 2 deletions

View File

@ -1017,8 +1017,8 @@ function hotkey_handler(e) {
if (keycode == 16) return; // ignore lone shift
if ((keycode == 70 || keycode == 67 || keycode == 71 ||
keycode == 224 || keycode == 91) && !hotkey_prefix) {
if ((keycode == 70 || keycode == 67 || keycode == 71)
&& !hotkey_prefix) {
hotkey_prefix = keycode;
debug("KP: PREFIX=" + keycode + " CHAR=" + keychar);