diff options
author | kit <kitbdev@gmail.com> | 2024-04-17 14:32:27 -0400 |
---|---|---|
committer | kit <kitbdev@gmail.com> | 2024-04-19 17:10:38 -0400 |
commit | 55711b2ee849163135640cda0f00fcdcb0819af5 (patch) | |
tree | cbccba3435fbb6553ee8a45ee6293c3c22d8623e /editor/editor_inspector.cpp | |
parent | 4b7776e31bf91bd3d710277b505c196b38d8fff3 (diff) | |
download | redot-engine-55711b2ee849163135640cda0f00fcdcb0819af5.tar.gz |
Don't edit current when changing docks
Diffstat (limited to 'editor/editor_inspector.cpp')
-rw-r--r-- | editor/editor_inspector.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/editor/editor_inspector.cpp b/editor/editor_inspector.cpp index aed1462eb6..9d75c32b73 100644 --- a/editor/editor_inspector.cpp +++ b/editor/editor_inspector.cpp @@ -3468,7 +3468,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) { _clear(); - object->disconnect("property_list_changed", callable_mp(this, &EditorInspector::_changed_callback)); + if (object->is_connected("property_list_changed", callable_mp(this, &EditorInspector::_changed_callback))) { + object->disconnect("property_list_changed", callable_mp(this, &EditorInspector::_changed_callback)); + } } per_array_page.clear(); @@ -4010,14 +4012,13 @@ void EditorInspector::_notification(int p_what) { } break; case NOTIFICATION_PREDELETE: { - edit(nullptr); //just in case + 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: { |