Marzona / rig-remote

remote control a rig through rigctl protocol
MIT License
21 stars 6 forks source link

remove the event generation logic from the scanning thread #33

Closed Marzona closed 8 years ago

Marzona commented 8 years ago

The scanning thread now generates tk events at the end of the task to signal it's completion. Then the main thread should join() and terminate the child thread.

This is a known bad practice according to the tkinter documentation, and the side effect described in the documentation is what we are experiencing.

MaineTim commented 8 years ago

GUI code removed from scan thread in branch tim_devel_fix_issue30