diff --git a/script.py b/script.py index d9ada03..5d0aba3 100644 --- a/script.py +++ b/script.py @@ -282,7 +282,8 @@ def toggle_disable(reason: str) -> None: beep = threading.Thread(target=lambda: winsound.Beep(500, 100) if enabled else winsound.Beep(400, 100)) beep.start() - update_label("SG+" if enabled else "SG-", "white") + if config["enable_status_indicator"]: + update_label("SG+" if enabled else "SG-", "white") disabled_reason = reason