diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-05-07 16:49:46 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-05-07 16:49:46 +0200 |
commit | 25324545f2e7d74f7e6b11cc4125434548abf536 (patch) | |
tree | bb9d76b6284b08b9c73ada495cb39f4bf6446fb6 /editor/editor_inspector.cpp | |
parent | f9eb81e70eb9c2fb3501c847203f3f12cf50ce8f (diff) | |
parent | 55afb5b680091e7902b35cd0c949649d54fd0e79 (diff) | |
download | redot-engine-25324545f2e7d74f7e6b11cc4125434548abf536.tar.gz |
Merge pull request #91538 from kitbdev/fix-inspector-exit-crash
Fix EditorInspector crash when exiting
Diffstat (limited to 'editor/editor_inspector.cpp')
-rw-r--r-- | editor/editor_inspector.cpp | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/editor/editor_inspector.cpp b/editor/editor_inspector.cpp index dd9805085b..d9dcf949c7 100644 --- a/editor/editor_inspector.cpp +++ b/editor/editor_inspector.cpp @@ -4039,25 +4039,16 @@ void EditorInspector::_notification(int p_what) { EditorFeatureProfileManager::get_singleton()->connect("current_feature_profile_changed", callable_mp(this, &EditorInspector::_feature_profile_changed)); set_process(is_visible_in_tree()); add_theme_style_override("panel", get_theme_stylebox(SNAME("panel"), SNAME("Tree"))); - } break; - - case NOTIFICATION_ENTER_TREE: { if (!sub_inspector) { get_tree()->connect("node_removed", callable_mp(this, &EditorInspector::_node_removed)); } } break; case NOTIFICATION_PREDELETE: { - 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) { + if (!sub_inspector && is_inside_tree()) { get_tree()->disconnect("node_removed", callable_mp(this, &EditorInspector::_node_removed)); } + edit(nullptr); } break; case NOTIFICATION_VISIBILITY_CHANGED: { |