Double WMI and hotkey fix for ancient models https://github.com/seerge/g-helper/issues/2081

This commit is contained in:
Serge
2024-02-18 19:19:55 +01:00
parent a6a453704a
commit c82bc874cf
2 changed files with 7 additions and 0 deletions

View File

@@ -890,6 +890,7 @@ namespace GHelper.Input
if (e.NewEvent is null) return;
int EventID = int.Parse(e.NewEvent["EventID"].ToString());
Logger.WriteLine("WMI event " + EventID);
if (AppConfig.NoWMI()) return;
HandleEvent(EventID);
}
}