Fix bug in UnsubscribeKeyboard (incorrect concurrent check)

device-handlers
Clive Galway 3 years ago
parent 50784ea295
commit 03fafdc135

@ -76,7 +76,7 @@ namespace AutoHotInterception.DeviceHandlers
{ {
if (KeyboardMapping == null) return; if (KeyboardMapping == null) return;
// Stop DeviceWorkerThread // Stop DeviceWorkerThread
if (KeyboardMapping.Concurrent) if (!KeyboardMapping.Concurrent)
{ {
if (DeviceWorkerThread != null) if (DeviceWorkerThread != null)
{ {

Loading…
Cancel
Save