Fix bug stopping WorkerThread.Dispose() from not properly disposing

device-handlers
Clive Galway 2 years ago
parent 12237abed7
commit a0afb736ee

@ -26,6 +26,7 @@ namespace AutoHotInterception
{
if (!_running) return;
_running = false;
_worker.Abort();
_worker.Join();
}

Loading…
Cancel
Save