Selaa lähdekoodia

Merge pull request #23964 from allkhor/text_edit_clear_selection

TextEdit: remove selection when clear happens.
Rémi Verschelde 6 vuotta sitten
vanhempi
commit
73551a1edc
1 muutettua tiedostoa jossa 1 lisäystä ja 0 poistoa
  1. 1 0
      scene/gui/text_edit.cpp

+ 1 - 0
scene/gui/text_edit.cpp

@@ -4264,6 +4264,7 @@ void TextEdit::_clear() {
 	cursor.line_ofs = 0;
 	cursor.wrap_ofs = 0;
 	cursor.last_fit_x = 0;
+	selection.active = false;
 }
 
 void TextEdit::clear() {