Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion architecture/juce/juce-plugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -767,7 +767,7 @@ FaustPlugInAudioProcessorEditor::FaustPlugInAudioProcessorEditor (FaustPlugInAud
//==============================================================================
void FaustPlugInAudioProcessorEditor::paint (juce::Graphics& g)
{
g.fillAll (juce::Colours::white);
g.fillAll (juce::Colours::black);
}

void FaustPlugInAudioProcessorEditor::resized()
Expand Down
2 changes: 1 addition & 1 deletion architecture/juce/juce-standalone.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ class FaustComponent : public juce::AudioAppComponent, private juce::Timer

void paint (juce::Graphics& g) override
{
g.fillAll (juce::Colour (juce::Colours::white));
g.fillAll (juce::Colour (juce::Colours::black));
}

void resized() override
Expand Down