Tagged Questions
3
votes
1answer
1k views
Tkinter locks python when Icon loaded and tk.mainloop in a thread
Here's the test case...
import Tkinter as tk
import thread
from time import sleep
if __name__ == '__main__':
t = tk.Tk()
thread.start_new_thread(t.mainloop, ())
# ...