mirror of
https://github.com/badvision/jace.git
synced 2024-11-30 23:49:52 +00:00
FIX: Shift was not properly relaying keys being sent to the emulator in Windows 8.1 (Thanks Justin Scott!)
This commit is contained in:
parent
16bcc25204
commit
959a496e59
@ -203,7 +203,7 @@ public class Keyboard implements Reconfigurable {
|
|||||||
if (e.isConsumed()) {
|
if (e.isConsumed()) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
char c = 255;
|
char c = 255;
|
||||||
if (e.getText().length() > 0) {
|
if (e.getText().length() > 0) {
|
||||||
c = e.getText().charAt(0);
|
c = e.getText().charAt(0);
|
||||||
@ -241,11 +241,46 @@ public class Keyboard implements Reconfigurable {
|
|||||||
default:
|
default:
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (e.isShiftDown()) {
|
||||||
|
c = fixShiftedChar(c);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
if (c < 128) {
|
if (c < 128) {
|
||||||
pressKey((byte) c);
|
pressKey((byte) c);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private char fixShiftedChar(char c) {
|
||||||
|
if (c >= 'a' && c <= 'z') {
|
||||||
|
return (char) (c - 32);
|
||||||
|
} else {
|
||||||
|
switch (c) {
|
||||||
|
case '0': return ')';
|
||||||
|
case '1': return '!';
|
||||||
|
case '2': return '@';
|
||||||
|
case '3': return '#';
|
||||||
|
case '4': return '$';
|
||||||
|
case '5': return '%';
|
||||||
|
case '6': return '^';
|
||||||
|
case '7': return '&';
|
||||||
|
case '8': return '*';
|
||||||
|
case '9': return '(';
|
||||||
|
case '-': return '_';
|
||||||
|
case '=': return '+';
|
||||||
|
case '[': return '{';
|
||||||
|
case ']': return '}';
|
||||||
|
case '\\': return '|';
|
||||||
|
case ';': return ':';
|
||||||
|
case '\'': return '"';
|
||||||
|
case ',': return '<';
|
||||||
|
case '.': return '>';
|
||||||
|
case '/': return '?';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return c;
|
||||||
|
}
|
||||||
|
|
||||||
public void keyReleased(KeyEvent e) {
|
public void keyReleased(KeyEvent e) {
|
||||||
KeyCode code = e.getCode();
|
KeyCode code = e.getCode();
|
||||||
processKeyUpEvents(e);
|
processKeyUpEvents(e);
|
||||||
|
Loading…
Reference in New Issue
Block a user