[LineEdit] Update line edit offset on text delete.
This commit is contained in:
parent
0bca424239
commit
6a1fdc213c
1 changed files with 1 additions and 5 deletions
|
@ -1513,11 +1513,7 @@ void LineEdit::delete_text(int p_from_column, int p_to_column) {
|
||||||
text = text.left(p_from_column) + text.substr(p_to_column);
|
text = text.left(p_from_column) + text.substr(p_to_column);
|
||||||
_shape();
|
_shape();
|
||||||
|
|
||||||
caret_column -= CLAMP(caret_column - p_from_column, 0, p_to_column - p_from_column);
|
set_caret_column(caret_column - CLAMP(caret_column - p_from_column, 0, p_to_column - p_from_column));
|
||||||
|
|
||||||
if (caret_column >= text.length()) {
|
|
||||||
caret_column = text.length();
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!text_changed_dirty) {
|
if (!text_changed_dirty) {
|
||||||
if (is_inside_tree()) {
|
if (is_inside_tree()) {
|
||||||
|
|
Loading…
Reference in a new issue