Remove error when property is outside inspector

This commit is contained in:
kobewi 2024-02-20 14:53:16 +01:00
parent b7145638d5
commit c060ff8b41

View File

@ -429,7 +429,7 @@ EditorInspector *EditorProperty::get_parent_inspector() const {
}
parent = parent->get_parent();
}
ERR_FAIL_V_MSG(nullptr, "EditorProperty is outside inspector.");
return nullptr;
}
void EditorProperty::set_doc_path(const String &p_doc_path) {