Browse Source

Changed incorrect ComboBox colour ID use.

tags/2021-05-28
jules 13 years ago
parent
commit
296f30f449
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      modules/juce_gui_basics/lookandfeel/juce_LookAndFeel.cpp

+ 1
- 1
modules/juce_gui_basics/lookandfeel/juce_LookAndFeel.cpp 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


Loading…
Cancel
Save