Browse Source

Fix regression with right click on main selection

jmb462 2 years ago
parent
commit
d59cdb8327
1 changed files with 1 additions and 1 deletions
  1. 1 1
      editor/plugins/script_text_editor.cpp

+ 1 - 1
editor/plugins/script_text_editor.cpp

@@ -1819,7 +1819,7 @@ void ScriptTextEditor::_text_edit_gui_input(const Ref<InputEvent> &ev) {
 					}
 				}
 			}
-			if (!caret_clicked) {
+			if (caret_clicked < 0) {
 				tx->deselect();
 				tx->remove_secondary_carets();
 				caret_clicked = 0;