Caret blink will no longer cause redraw without focus, issue 6167
(cherry picked from commit 7b036a94bf
)
This commit is contained in:
parent
bc8dabf3d2
commit
9e1e5daddf
2 changed files with 2 additions and 2 deletions
|
@ -859,7 +859,7 @@ void LineEdit::_reset_caret_blink_timer() {
|
||||||
|
|
||||||
void LineEdit::_toggle_draw_caret() {
|
void LineEdit::_toggle_draw_caret() {
|
||||||
draw_caret = !draw_caret;
|
draw_caret = !draw_caret;
|
||||||
if (is_visible()) {
|
if (is_visible() && has_focus() && window_has_focus) {
|
||||||
update();
|
update();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -3350,7 +3350,7 @@ void TextEdit::_reset_caret_blink_timer() {
|
||||||
|
|
||||||
void TextEdit::_toggle_draw_caret() {
|
void TextEdit::_toggle_draw_caret() {
|
||||||
draw_caret = !draw_caret;
|
draw_caret = !draw_caret;
|
||||||
if (is_visible()) {
|
if (is_visible() && has_focus() && window_has_focus) {
|
||||||
update();
|
update();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue