From cfead6205bdd53afb049ad8a847ecb93df50bea9 Mon Sep 17 00:00:00 2001 From: jules Date: Sun, 23 Feb 2014 11:55:17 +0000 Subject: [PATCH] Added a missing TextEditor colour setting to the L+F. --- modules/juce_gui_basics/lookandfeel/juce_LookAndFeel_V2.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/juce_gui_basics/lookandfeel/juce_LookAndFeel_V2.cpp b/modules/juce_gui_basics/lookandfeel/juce_LookAndFeel_V2.cpp index dc24b59de6..85045f7b2c 100644 --- a/modules/juce_gui_basics/lookandfeel/juce_LookAndFeel_V2.cpp +++ b/modules/juce_gui_basics/lookandfeel/juce_LookAndFeel_V2.cpp @@ -1459,6 +1459,8 @@ Label* LookAndFeel_V2::createSliderTextBox (Slider& slider) l->setColour (TextEditor::outlineColourId, slider.findColour (Slider::textBoxOutlineColourId)); + l->setColour (TextEditor::highlightColourId, slider.findColour (Slider::textBoxHighlightColourId)); + return l; }