summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--scene/gui/line_edit.cpp6
1 files changed, 1 insertions, 5 deletions
diff --git a/scene/gui/line_edit.cpp b/scene/gui/line_edit.cpp
index 4c1e591bd7..f74d6df158 100644
--- a/scene/gui/line_edit.cpp
+++ b/scene/gui/line_edit.cpp
@@ -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);
_shape();
- caret_column -= CLAMP(caret_column - p_from_column, 0, p_to_column - p_from_column);
-
- if (caret_column >= text.length()) {
- caret_column = text.length();
- }
+ set_caret_column(caret_column - CLAMP(caret_column - p_from_column, 0, p_to_column - p_from_column));
if (!text_changed_dirty) {
if (is_inside_tree()) {