Skip to content

Commit

Permalink
Merge pull request #88597 from KoBeWi/thinking_outside_the_inspector
Browse files Browse the repository at this point in the history
Remove error when property is outside inspector
  • Loading branch information
akien-mga committed Feb 20, 2024
2 parents f55ee87 + c060ff8 commit 25a52c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion editor/editor_inspector.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 25a52c6

Please sign in to comment.