[Editor] Don't open AnimationLibrary as a scene

This commit is contained in:
A Thousand Ships 2024-05-03 18:27:16 +02:00
parent 03e6fbb010
commit 62c9a99ee3
No known key found for this signature in database
GPG key ID: 2033189A662F8BD7

View file

@ -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.