From 5e194102939e558c39ea6c7a63d4ffeb3e527a8d Mon Sep 17 00:00:00 2001 From: David Rowe Date: Sun, 17 Dec 2017 15:23:40 +1300 Subject: [PATCH] Fix handshake satyhing on when release "x" if Ctrl or similar pressed --- scripts/system/makeUserConnection.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/scripts/system/makeUserConnection.js b/scripts/system/makeUserConnection.js index fedadbb2b4..d9003ffeaa 100644 --- a/scripts/system/makeUserConnection.js +++ b/scripts/system/makeUserConnection.js @@ -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); } }