Fix for (someitmes) not working hotkeys on Z13 https://github.com/seerge/g-helper/issues/1547

This commit is contained in:
Serge
2023-10-31 18:03:23 +01:00
parent 162514a8f9
commit f854c8e088
2 changed files with 4 additions and 13 deletions

View File

@@ -514,7 +514,7 @@ namespace GHelper.Input
Logger.WriteLine("Tablet: " + tabletState + " Touchpad: " + touchpadState);
if (tabletState && touchpadState || !tabletState && !touchpadState) AsusUSB.TouchpadToggle();
if (tabletState && touchpadState || !tabletState && !touchpadState) ToggleTouchpad();
}