1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-13 13:31:48 +00:00

fix error dialog from appearing after loading material res

This commit is contained in:
Manuel Dun
2022-10-02 21:09:54 -04:00
parent e69b7083d4
commit e9d8847e29

View File

@@ -155,7 +155,7 @@ void EditorResourcePicker::_file_selected(const String &p_path) {
any_type_matches = is_global_class ? EditorNode::get_editor_data().script_class_is_parent(res_type, base) : loaded_resource->is_class(base); any_type_matches = is_global_class ? EditorNode::get_editor_data().script_class_is_parent(res_type, base) : loaded_resource->is_class(base);
if (!any_type_matches) { if (any_type_matches) {
break; break;
} }
} }