1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-22 01:34:21 +00:00

Changed incorrect ComboBox colour ID use.

This commit is contained in:
jules 2012-08-03 13:30:21 +01:00
parent 7650576f0c
commit 296f30f449

View file

@ -1262,7 +1262,7 @@ void LookAndFeel::drawComboBox (Graphics& g, int width, int height,
if (box.isEnabled() && box.hasKeyboardFocus (false))
{
g.setColour (box.findColour (TextButton::buttonColourId));
g.setColour (box.findColour (ComboBox::buttonColourId));
g.drawRect (0, 0, width, height, 2);
}
else