Caret blink will no longer cause redraw without focus, issue 6167

This commit is contained in:
Paulb23 2016-11-06 14:15:59 +00:00
parent a4570cb461
commit 7b036a94bf
2 changed files with 2 additions and 2 deletions

View file

@ -853,7 +853,7 @@ void LineEdit::_reset_caret_blink_timer() {
void LineEdit::_toggle_draw_caret() {
draw_caret = !draw_caret;
if (is_visible()) {
if (is_visible() && has_focus() && window_has_focus) {
update();
}
}

View file

@ -3458,7 +3458,7 @@ void TextEdit::_reset_caret_blink_timer() {
void TextEdit::_toggle_draw_caret() {
draw_caret = !draw_caret;
if (is_visible()) {
if (is_visible() && has_focus() && window_has_focus) {
update();
}
}