From 296f30f449ad86a9b48941c90ef86cd31fdb5dbb Mon Sep 17 00:00:00 2001 From: jules Date: Fri, 3 Aug 2012 13:30:21 +0100 Subject: [PATCH] Changed incorrect ComboBox colour ID use. --- modules/juce_gui_basics/lookandfeel/juce_LookAndFeel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/juce_gui_basics/lookandfeel/juce_LookAndFeel.cpp b/modules/juce_gui_basics/lookandfeel/juce_LookAndFeel.cpp index 02b9272a0c..0b4ab4710a 100644 --- a/modules/juce_gui_basics/lookandfeel/juce_LookAndFeel.cpp +++ b/modules/juce_gui_basics/lookandfeel/juce_LookAndFeel.cpp @@ -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