Caret blink no longer updates when hidden, issue 5100

This commit is contained in:
Paulb23 2016-06-08 14:02:39 +01:00
parent 47944098c2
commit e260e3872c

View file

@ -3261,7 +3261,9 @@ void TextEdit::_reset_caret_blink_timer() {
void TextEdit::_toggle_draw_caret() {
draw_caret = !draw_caret;
update();
if (is_visible()) {
update();
}
}
void TextEdit::_update_caches() {