Merge pull request #16499 from sudoio/master

Deselect text when jumping to function
This commit is contained in:
Poommetee Ketson 2018-02-12 23:09:19 +07:00 committed by GitHub
commit 45ab9cdfb5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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);
}