1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-16 00:34:19 +00:00

TextEditor: Call repaint on clear

This commit is contained in:
Tom Poole 2022-07-07 15:08:21 +01:00
parent 2eee1c1bd9
commit 4f884c8a54

View file

@ -1229,6 +1229,7 @@ void TextEditor::clear()
clearInternal (nullptr);
checkLayout();
undoManager.clearUndoHistory();
repaint();
}
void TextEditor::setText (const String& newText, bool sendTextChangeMessage)