1
0
mirror of https://github.com/TheFunny/ArisuAutoSweeper synced 2025-12-16 22:05:12 +00:00

refactor: MCE Manager

changed queue thread into daemon thread
This commit is contained in:
RedDeadDepresso 2023-12-26 00:52:04 +00:00 committed by YoursFunny
parent 204c56efac
commit fb02cedd8d
Signed by: YoursFunny
GPG Key ID: 207EDC3CD5B40F9C

View File

@ -432,6 +432,6 @@ if __name__ == "__main__":
app.title("MCE Manager")
linker.sidebar = app
config.load_config()
thread = threading.Thread(target=app.check_lock)
thread.start()
daemon_thread = threading.Thread(target=app.check_lock, daemon=True)
daemon_thread.start()
app.mainloop()