Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Some issues I noticed while playing with this on macOS. Took a bit of a deep dive and attempted to fix them up: - changing the tracer settings did not seem to change what was logged. seems to be the row isn't selected when the `onToggle` callback is called. solution was to instead use the toggled `cell` to get the row its in. this caused some C++ template issues but removing the `auto` fixes them all (the alternative being adding `template` to a few method calls, I should add I'm not a C++ programmer so from my limited understanding this was the best solution) - text in text fields were invisible. this was due to `setForegroundColor` in the macOS backend not properly handling a 0,0,0,0 color. changed to perform the ternary on the `Color` rather than the `NSColor` (`SystemColor` did not support the ternary) merry christmas :)
- Loading branch information