Browse Source

Fix crash when selecting lines in text edit

RedworkDE 2 years ago
parent
commit
6b7008b73b
1 changed files with 3 additions and 1 deletions
  1. 3 1
      scene/gui/text_edit.cpp

+ 3 - 1
scene/gui/text_edit.cpp

@@ -7161,7 +7161,9 @@ void TextEdit::_update_selection_mode_line() {
 	if (line < carets[caret_idx].selection.selecting_line) {
 		// Caret is above us.
 		set_caret_line(line - 1, false, true, 0, caret_idx);
-		carets.write[caret_idx].selection.selecting_column = text[get_selection_line(caret_idx)].length();
+		carets.write[caret_idx].selection.selecting_column = has_selection(caret_idx)
+				? text[get_selection_line(caret_idx)].length()
+				: 0;
 	} else {
 		// Caret is below us.
 		set_caret_line(line + 1, false, true, 0, caret_idx);