forked from zietzm/Helmholtz_Test_Bench
ui_print called from multiple threads #6
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Tkinter is not thread safe, the ui_print utility function which interacts with UI elements may thus not be called from different threads. This is pretty necessary, so we should instead implement a global queue to allow all threads to send print commands to be processed in the main thread.
Fixed in
33331e829a