Fixed Keyboard warning
This commit is contained in:
parent
d5042dd5b2
commit
585a6bdeff
9 changed files with 9 additions and 9 deletions
|
|
@ -346,7 +346,7 @@ class Keyboard extends Component {
|
|||
if (simCode == Keys.SHIFTED_KEYCODES[code]) {
|
||||
simCode = +code;
|
||||
code = Keys.NONASCII_KEYCODES[code];
|
||||
if (code) simCode = code;
|
||||
if (code) simCode = +code;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue