summaryrefslogtreecommitdiffstats
path: root/editor/code_editor.cpp
diff options
context:
space:
mode:
authorPaulb23 <p_batty@hotmail.co.uk>2018-10-13 18:30:23 +0100
committerPaulb23 <p_batty@hotmail.co.uk>2018-10-13 18:30:23 +0100
commitd47b20acaebddea0a2b9f818a98754b53b041a15 (patch)
treee2333fee0cd240efad316298e17452dc6c7113fa /editor/code_editor.cpp
parentfe0db6c4797b8094c64e4ad017e29be866288628 (diff)
downloadredot-engine-d47b20acaebddea0a2b9f818a98754b53b041a15.tar.gz
Fixed delete line being off by one, issue 22819
Diffstat (limited to 'editor/code_editor.cpp')
-rw-r--r--editor/code_editor.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/editor/code_editor.cpp b/editor/code_editor.cpp
index 79c22f667a..aeb304d3b9 100644
--- a/editor/code_editor.cpp
+++ b/editor/code_editor.cpp
@@ -1039,6 +1039,8 @@ void CodeTextEditor::delete_lines() {
int to_line = text_editor->get_selection_to_line();
int from_line = text_editor->get_selection_from_line();
int count = Math::abs(to_line - from_line) + 1;
+
+ text_editor->cursor_set_line(to_line, false);
while (count) {
text_editor->set_line(text_editor->cursor_get_line(), "");
text_editor->backspace_at_cursor();