From 837d2ab38e8131e3696aae6444cb8ba4ad38aa3e Mon Sep 17 00:00:00 2001 From: Serge <5920850+seerge@users.noreply.github.com> Date: Thu, 13 Jul 2023 22:42:36 +0200 Subject: [PATCH] F11 fix --- app/Input/InputDispatcher.cs | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/app/Input/InputDispatcher.cs b/app/Input/InputDispatcher.cs index b9e407d9..7467d861 100644 --- a/app/Input/InputDispatcher.cs +++ b/app/Input/InputDispatcher.cs @@ -158,6 +158,13 @@ namespace GHelper.Input case Keys.F4: KeyProcess("m3"); return; + } + } + + if (AppConfig.ContainsModel("Z13")) + { + switch (e.Key) + { case Keys.F11: HandleEvent(199); return;