mirror of
https://github.com/lubosz/overte.git
synced 2025-04-24 14:03:17 +02:00
Merge pull request #12005 from ctrlaltdavid/21674
Fix handshake mode staying on when release "x" if Ctrl or Shift pressed
This commit is contained in:
commit
4d42dba300
1 changed files with 1 additions and 2 deletions
|
@ -898,8 +898,7 @@
|
|||
}
|
||||
}
|
||||
function keyReleaseEvent(event) {
|
||||
if ((event.text.toUpperCase() === "X") && !event.isAutoRepeat && !event.isShifted && !event.isMeta && !event.isControl
|
||||
&& !event.isAlt) {
|
||||
if (event.text.toUpperCase() === "X" && !event.isAutoRepeat) {
|
||||
updateTriggers(0.0, true, Controller.Standard.RightHand);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue