From b9be9a9c97bab44535e192edad32b9e232ed2bf3 Mon Sep 17 00:00:00 2001 From: Serge <5920850+seerge@users.noreply.github.com> Date: Tue, 29 Oct 2024 18:36:48 +0100 Subject: [PATCH] Added FN+F5 keycode for ancient devices https://github.com/seerge/g-helper/discussions/3322 --- app/Input/InputDispatcher.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/app/Input/InputDispatcher.cs b/app/Input/InputDispatcher.cs index 2e05fd05..af8570ef 100644 --- a/app/Input/InputDispatcher.cs +++ b/app/Input/InputDispatcher.cs @@ -748,6 +748,7 @@ namespace GHelper.Input KeyProcess("fne"); return; case 174: // FN+F5 + case 153: // FN+F5 OLD MODELS case 157: // Zenbook DUO FN+F modeControl.CyclePerformanceMode(Control.ModifierKeys == Keys.Shift); return;