try setting thread to daemon

This commit is contained in:
Brendan Haines 2020-03-02 21:59:54 -07:00
parent 148e482697
commit 126b48a41e

View File

@ -164,6 +164,7 @@ def start_controller(attrname=None, old=None, new=None):
global control_thread_run
control_thread_run = True
control_thread = threading.Thread(target=controller)
control_thread.daemon = True
control_thread.start()
def stop_controller(attrname=None, old=None, new=None):