From 36eae610e8f778214cfa477ee128e2c725c3a8b7 Mon Sep 17 00:00:00 2001 From: Serge <5920850+seerge@users.noreply.github.com> Date: Fri, 17 Nov 2023 17:41:55 +0100 Subject: [PATCH] Triple-key binding fix https://github.com/seerge/g-helper/issues/1608 --- app/Input/InputDispatcher.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Input/InputDispatcher.cs b/app/Input/InputDispatcher.cs index a9d46f1d..a2204d59 100644 --- a/app/Input/InputDispatcher.cs +++ b/app/Input/InputDispatcher.cs @@ -194,7 +194,7 @@ namespace GHelper.Input KeyboardHook.KeyKeyPress((Keys)hexKeys[0], (Keys)hexKeys[1]); break; case 3: - KeyboardHook.KeyKeyKeyPress((Keys)hexKeys[0], (Keys)hexKeys[1], (Keys)hexKeys[3]); + KeyboardHook.KeyKeyKeyPress((Keys)hexKeys[0], (Keys)hexKeys[1], (Keys)hexKeys[2]); break; default: LaunchProcess(command);