1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Fix for caret updating in TextEditor when look+feel changes

This commit is contained in:
jules 2015-11-16 10:35:36 +00:00
parent 26b01e9f18
commit 2b869c48eb

View file

@ -1084,6 +1084,7 @@ void TextEditor::colourChanged()
void TextEditor::lookAndFeelChanged()
{
caret = nullptr;
recreateCaret();
repaint();
}