Adapt remaining local engines to json format

This commit is contained in:
AuroraWright
2025-10-15 02:58:05 +02:00
parent a86b0c2dc9
commit 54b41d00a5
2 changed files with 266 additions and 49 deletions

View File

@@ -1142,7 +1142,7 @@ class ScreenshotThread(threading.Thread):
class AutopauseTimer:
def __init__(self):
self.timeout = config.get_general('auto_pause')
self.timer_thread = threading.Thread(target=self._countdown)
self.timer_thread = threading.Thread(target=self._countdown, daemon=True)
self.running = True
self.countdown_active = threading.Event()
self.allow_auto_pause = threading.Event()