ruby / tk

Tk interface module using tcltklib
Other
117 stars 22 forks source link

Default to running the event loop on the main thread #28

Closed jeremyevans closed 3 years ago

jeremyevans commented 3 years ago

This provides a massive speedup. From the sound of this, you would think this would cause blocking of the user interface while the Ruby code runs. However, that happens regardless of this setting, so I'm not sure what advantages there are to running the eventloop on a separate thread.

Fixes #26

jeremyevans commented 3 years ago

I plan to commit this next week unless I hear objections.