mirror of
https://github.com/TheFunny/ArisuAutoSweeper
synced 2026-06-09 20:04:52 +00:00
refactor: MCE Manager
changed queue thread into daemon thread
This commit is contained in:
+2
-2
@@ -432,6 +432,6 @@ if __name__ == "__main__":
|
|||||||
app.title("MCE Manager")
|
app.title("MCE Manager")
|
||||||
linker.sidebar = app
|
linker.sidebar = app
|
||||||
config.load_config()
|
config.load_config()
|
||||||
thread = threading.Thread(target=app.check_lock)
|
daemon_thread = threading.Thread(target=app.check_lock, daemon=True)
|
||||||
thread.start()
|
daemon_thread.start()
|
||||||
app.mainloop()
|
app.mainloop()
|
||||||
Reference in New Issue
Block a user