1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-05 12:10:55 +00:00

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

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()) {