ETCLabs / OSCWidgets

UNOFFICIAL - OSC widgets for your Mac or Windows Desktop
MIT License
67 stars 12 forks source link

Context menu bug fix + LogFile thread no longer consumes all CPU cycles #17

Closed laseranichris closed 6 years ago

laseranichris commented 6 years ago

Context menu bug fix:

By adding the window widget (OSCWidgets v0.6 -> v0.7) some labels in the context menu got broken. This fix restores the original labels.


The LogFile thread no longer consumes all CPU cycles:

The LogFile thread consumed all CPU cycles, even when OSCWidgets was idle.

By adding a short sleep the problem is solved.

Because the messages are buffered, the sleep can be as long as desired. I decided to sleep for 100ms.