summaryrefslogtreecommitdiffstats
path: root/editor/editor_inspector.cpp
diff options
context:
space:
mode:
authorkit <kitbdev@gmail.com>2024-04-23 15:07:34 -0400
committerkit <kitbdev@gmail.com>2024-04-25 15:01:20 -0400
commiteefd3114560afcfbaf826c806deabefb3643750c (patch)
tree2d907e3f3de1f523da9f4b8ba58d6ded3477efde /editor/editor_inspector.cpp
parent11d3768132582d192b8464769f26b493ae822321 (diff)
downloadredot-engine-eefd3114560afcfbaf826c806deabefb3643750c.tar.gz
Don't edit current when changing docks v2
Diffstat (limited to 'editor/editor_inspector.cpp')
-rw-r--r--editor/editor_inspector.cpp6
1 files changed, 4 insertions, 2 deletions
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: {