faust
faust copied to clipboard
faust2juce draws white on white gui by default
Hello
This is a tiny issue but the faust2juce tool creates GUI's with white on white by default:

I've fixed it for myself here by changing this line to fill using black instead: https://github.com/grame-cncm/faust/blob/76ab7cbc48f9f20249ce19891ac8eab0cd5ec8cb/architecture/juce/juce-plugin.cpp#L770
That fixes the issue. I can do a PR for this if needed.
Or better change the font colour from white to something else?
/usr/local/include/faust/gui/JuceGUI.h
and change "black" to "white" in
/usr/local/share/faust/juce
in /usr/local/include/faust/gui/JuceGUI.h to "white", and "g.fillAll (juce::Colours::white);" to "g.fillAll (juce::Colours::black);".
