Merge pull request #72471 from mbrlabs/blink

Always show caret when moving in LineEdit
This commit is contained in:
Rémi Verschelde 2023-02-02 09:35:16 +01:00
commit 9c84aae940
No known key found for this signature in database
GPG Key ID: C3336907360768E1

View File

@ -84,6 +84,7 @@ void LineEdit::_move_caret_left(bool p_select, bool p_move_by_word) {
}
shift_selection_check_post(p_select);
_reset_caret_blink_timer();
}
void LineEdit::_move_caret_right(bool p_select, bool p_move_by_word) {
@ -116,6 +117,7 @@ void LineEdit::_move_caret_right(bool p_select, bool p_move_by_word) {
}
shift_selection_check_post(p_select);
_reset_caret_blink_timer();
}
void LineEdit::_move_caret_start(bool p_select) {