From 9f56aa9d3dd6fe57b56ff46d70ced422c59bb425 Mon Sep 17 00:00:00 2001 From: Serge <5920850+seerge@users.noreply.github.com> Date: Sun, 12 Nov 2023 11:48:06 +0100 Subject: [PATCH] Detect Z13 keyboard reconnection https://github.com/seerge/g-helper/issues/1581 --- app/Peripherals/PeripheralsProvider.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/app/Peripherals/PeripheralsProvider.cs b/app/Peripherals/PeripheralsProvider.cs index ee73be95..b44d90d4 100644 --- a/app/Peripherals/PeripheralsProvider.cs +++ b/app/Peripherals/PeripheralsProvider.cs @@ -239,6 +239,7 @@ namespace GHelper.Peripherals timer.Stop(); Logger.WriteLine("HID Device Event: Checking for new ASUS Mice"); DetectAllAsusMice(); + if (AppConfig.IsZ13()) Program.inputDispatcher.Init(); } } }