Browse Source

Merge pull request #52671 from Chaosus/fix_delete_line

Fix error which generates if `Delete Line` used on the last line in `CodeEditor`
Rémi Verschelde 3 years ago
parent
commit
0232a03177
1 changed files with 3 additions and 1 deletions
  1. 3 1
      editor/code_editor.cpp

+ 3 - 1
editor/code_editor.cpp

@@ -1302,7 +1302,9 @@ void CodeTextEditor::_delete_line(int p_line) {
 		text_editor->set_caret_column(0);
 		text_editor->set_caret_column(0);
 	}
 	}
 	text_editor->backspace();
 	text_editor->backspace();
-	text_editor->unfold_line(p_line);
+	if (p_line < text_editor->get_line_count()) {
+		text_editor->unfold_line(p_line);
+	}
 	text_editor->set_caret_line(p_line);
 	text_editor->set_caret_line(p_line);
 }
 }