summaryrefslogtreecommitdiffstats
path: root/editor/editor_inspector.cpp
diff options
context:
space:
mode:
authorAaron Franke <arnfranke@yahoo.com>2024-07-08 14:00:28 -0700
committerAaron Franke <arnfranke@yahoo.com>2024-07-08 14:00:28 -0700
commit2e7526af42a265e83f511eeff1e4a2cc70bd3624 (patch)
tree80544766818fa1f674493ed329e53b48cf46b494 /editor/editor_inspector.cpp
parent16f98cd7079c2b22248ec358371f17bca355e42e (diff)
downloadredot-engine-2e7526af42a265e83f511eeff1e4a2cc70bd3624.tar.gz
Fix editor inspector crashing when the old object is no longer valid
Diffstat (limited to 'editor/editor_inspector.cpp')
-rw-r--r--editor/editor_inspector.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/editor/editor_inspector.cpp b/editor/editor_inspector.cpp
index 467a19ebb1..199383c391 100644
--- a/editor/editor_inspector.cpp
+++ b/editor/editor_inspector.cpp
@@ -3579,7 +3579,9 @@ void EditorInspector::edit(Object *p_object) {
next_object = p_object; // Some plugins need to know the next edited object when clearing the inspector.
if (object) {
- object->disconnect(CoreStringName(property_list_changed), callable_mp(this, &EditorInspector::_changed_callback));
+ if (likely(Variant(object).get_validated_object())) {
+ object->disconnect(CoreStringName(property_list_changed), callable_mp(this, &EditorInspector::_changed_callback));
+ }
_clear();
}
per_array_page.clear();