Merge pull request #54745 from KoBeWi/find_in_scenes

This commit is contained in:
Rémi Verschelde 2021-11-10 22:08:24 +01:00 committed by GitHub
commit 7211012c4f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -3465,6 +3465,9 @@ void ScriptEditor::_on_find_in_files_result_selected(String fpath, int line_numb
shader_editor->make_visible(true);
shader_editor->get_shader_editor()->goto_line_selection(line_number - 1, begin, end);
return;
} else if (fpath.get_extension() == "tscn") {
editor->load_scene(fpath);
return;
} else {
Ref<Script> script = res;
if (script.is_valid()) {