diff options
author | Adam Scott <ascott.ca@gmail.com> | 2022-11-23 08:44:50 -0500 |
---|---|---|
committer | Adam Scott <ascott.ca@gmail.com> | 2022-11-23 09:21:41 -0500 |
commit | 0c64304ba5a825e2fda3496b160e424aa499d334 (patch) | |
tree | 06013a95c58d7a1f533d3fc32555a5ac38b0de5e /scene/gui | |
parent | a8a88194a5cf5849d421aaec05beddbc437ebbcd (diff) |
Fix error while selecting last empty line
Diffstat (limited to 'scene/gui')
-rw-r--r-- | scene/gui/text_edit.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/gui/text_edit.cpp b/scene/gui/text_edit.cpp index 56f7281721..cce9fa4f34 100644 --- a/scene/gui/text_edit.cpp +++ b/scene/gui/text_edit.cpp @@ -4234,7 +4234,7 @@ Point2i TextEdit::get_line_column_at_pos(const Point2i &p_pos, bool p_allow_out_ if (!p_allow_out_of_bounds) { return Point2i(-1, -1); } - return Point2i(text[row].size(), row); + return Point2i(text[row].length(), row); } int col = 0; |