1
0
mirror of https://github.com/TheFunny/ArisuAutoSweeper synced 2025-12-18 10:55: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
parent 26f7e491b3
commit 64a2fed251

View File

@ -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()