diff options
author | Paulb23 <p_batty@hotmail.co.uk> | 2019-12-23 13:16:57 +0000 |
---|---|---|
committer | Paulb23 <p_batty@hotmail.co.uk> | 2019-12-23 13:16:57 +0000 |
commit | 0049f43fc82b047a3a3d557ca0d87d17733364ef (patch) | |
tree | 424d34738f37f103442d842a08e6fa801ec307ee /scene | |
parent | 22782d519c263febe0af94c7765fd79565c0f3ce (diff) |
Fixed selection indent taking an additional line
Diffstat (limited to 'scene')
-rw-r--r-- | scene/gui/text_edit.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scene/gui/text_edit.cpp b/scene/gui/text_edit.cpp index 9bcacd6ee3..2c4c7bdebe 100644 --- a/scene/gui/text_edit.cpp +++ b/scene/gui/text_edit.cpp @@ -1946,6 +1946,7 @@ void TextEdit::indent_right() { // Ignore if the cursor is not past the first column. if (is_selection_active() && get_selection_to_column() == 0) { + selection_offset = 0; end_line--; } |