diff options
author | A Thousand Ships <96648715+AThousandShips@users.noreply.github.com> | 2024-05-03 18:27:16 +0200 |
---|---|---|
committer | A Thousand Ships <96648715+AThousandShips@users.noreply.github.com> | 2024-05-03 18:27:27 +0200 |
commit | 62c9a99ee334a3a49df7b21925c2da7138cd83af (patch) | |
tree | e3d5f4b1826545506731f90f4df4aeed49c04c9d /editor/filesystem_dock.cpp | |
parent | 03e6fbb010c3546593bd91a0dabc045a9882705a (diff) | |
download | redot-engine-62c9a99ee334a3a49df7b21925c2da7138cd83af.tar.gz |
[Editor] Don't open `AnimationLibrary` as a scene
Diffstat (limited to 'editor/filesystem_dock.cpp')
-rw-r--r-- | editor/filesystem_dock.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/editor/filesystem_dock.cpp b/editor/filesystem_dock.cpp index ac4991755b..01d9096db3 100644 --- a/editor/filesystem_dock.cpp +++ b/editor/filesystem_dock.cpp @@ -1220,8 +1220,10 @@ void FileSystemDock::_select_file(const String &p_path, bool p_select_in_favorit if (is_imported) { SceneImportSettingsDialog::get_singleton()->open_settings(p_path, resource_type == "AnimationLibrary"); - } else { + } else if (resource_type == "PackedScene") { EditorNode::get_singleton()->open_request(fpath); + } else { + EditorNode::get_singleton()->load_resource(fpath); } } else if (ResourceLoader::is_imported(fpath)) { // If the importer has advanced settings, show them. |