From eefd3114560afcfbaf826c806deabefb3643750c Mon Sep 17 00:00:00 2001 From: kit Date: Tue, 23 Apr 2024 15:07:34 -0400 Subject: Don't edit current when changing docks v2 --- editor/editor_inspector.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'editor/editor_inspector.cpp') diff --git a/editor/editor_inspector.cpp b/editor/editor_inspector.cpp index 50cc89c618..d16eed9817 100644 --- a/editor/editor_inspector.cpp +++ b/editor/editor_inspector.cpp @@ -4019,14 +4019,16 @@ void EditorInspector::_notification(int p_what) { } break; case NOTIFICATION_PREDELETE: { - edit(nullptr); //just in case + if (EditorNode::get_singleton() && !EditorNode::get_singleton()->is_exiting()) { + // Don't need to clean up if exiting, and object may already be freed. + edit(nullptr); + } } break; case NOTIFICATION_EXIT_TREE: { if (!sub_inspector) { get_tree()->disconnect("node_removed", callable_mp(this, &EditorInspector::_node_removed)); } - edit(nullptr); } break; case NOTIFICATION_VISIBILITY_CHANGED: { -- cgit v1.2.3