fix error dialog from appearing after loading material res
This commit is contained in:
parent
e69b7083d4
commit
e9d8847e29
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
||||
if (!any_type_matches) {
|
||||
if (any_type_matches) {
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue