diff options
author | Artem Varaksa <aymfst@gmail.com> | 2018-02-08 21:12:08 +0300 |
---|---|---|
committer | Artem Varaksa <aymfst@gmail.com> | 2018-02-08 21:12:08 +0300 |
commit | 3094e897821491a1b2a9e28096d94ff32a3461e8 (patch) | |
tree | f38f2b67d382f01c575c6bc405f8e1b45a462b19 | |
parent | cbdd410a6f476503ee4bc27ac2f475a73960236d (diff) |
Fix #16479 (deselect text when jumping to function)
-rw-r--r-- | editor/plugins/script_text_editor.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/editor/plugins/script_text_editor.cpp b/editor/plugins/script_text_editor.cpp index a3728a1d46..ecd98d5d3e 100644 --- a/editor/plugins/script_text_editor.cpp +++ b/editor/plugins/script_text_editor.cpp @@ -519,6 +519,7 @@ void ScriptTextEditor::tag_saved_version() { void ScriptTextEditor::goto_line(int p_line, bool p_with_error) { TextEdit *tx = code_editor->get_text_edit(); + tx->deselect(); tx->unfold_line(p_line); tx->call_deferred("cursor_set_line", p_line); } |