1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-02-01 03:10:06 +00:00

Plugin Host: fixed background colour of channel configuration window

This commit is contained in:
hogliux 2017-05-12 16:13:48 +01:00
parent b0c3531ac3
commit f735a28708

View file

@ -203,7 +203,7 @@ public:
void paint (Graphics& g) override
{
g.fillAll (Colours::white);
g.fillAll (getLookAndFeel().findColour (ResizableWindow::backgroundColourId));
}
void resized() override
@ -480,7 +480,7 @@ FilterIOConfigurationWindow::~FilterIOConfigurationWindow()
void FilterIOConfigurationWindow::paint (Graphics& g)
{
g.fillAll (Colours::white);
g.fillAll (getLookAndFeel().findColour (ResizableWindow::backgroundColourId));
}
void FilterIOConfigurationWindow::resized()