1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-11 23:54:18 +00:00

Fixed some issues in the JUCE Demo project where colours weren't being updated when changing the LookAndFeel with the keyboard shortcuts

This commit is contained in:
ed 2017-05-02 12:41:38 +01:00
parent 3e7a111922
commit 63cf3e2057
15 changed files with 125 additions and 36 deletions

View file

@ -152,6 +152,11 @@ private:
outputDisplay.setBounds (r.withTrimmedTop (8));
}
void lookAndFeelChanged() override
{
outputDisplay.applyFontToAllText (outputDisplay.getFont());
}
JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (JavaScriptDemo)
};