mirror of
https://github.com/whscullin/apple2js.git
synced 2024-01-12 14:14:38 +00:00
Merge pull request #7 from iflan/alt-location
Match the location of the Alt key to the activated Apple key
This commit is contained in:
commit
dad9e6f7a5
12
js/main2e.js
12
js/main2e.js
@ -824,7 +824,11 @@ function _keydown(evt) {
|
||||
} else if (evt.keyCode == 91 || evt.keyCode == 93) { // Command
|
||||
keyboard.commandKey(true);
|
||||
} else if (evt.keyCode == 18) { // Alt
|
||||
keyboard.optionKey(true);
|
||||
if (evt.originalEvent.location == 1) {
|
||||
keyboard.commandKey(true);
|
||||
} else {
|
||||
keyboard.optionKey(true);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -839,7 +843,11 @@ function _keyup(evt) {
|
||||
} else if (evt.keyCode == 91 || evt.keyCode == 93) { // Command
|
||||
keyboard.commandKey(false);
|
||||
} else if (evt.keyCode == 18) { // Alt
|
||||
keyboard.optionKey(false);
|
||||
if (evt.originalEvent.location == 1) {
|
||||
keyboard.commandKey(false);
|
||||
} else {
|
||||
keyboard.optionKey(false);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user