mirror of
https://github.com/godotengine/godot.git
synced 2024-11-25 13:43:15 +00:00
Revert "Don't edit current when changing docks"
This reverts commit 55711b2ee8
.
Fixes #91046.
This commit is contained in:
parent
7abe0c6014
commit
2ad43045a3
@ -147,6 +147,7 @@ void EditorDockManager::_update_layout() {
|
||||
if (!dock_context_popup->is_inside_tree() || EditorNode::get_singleton()->is_exiting()) {
|
||||
return;
|
||||
}
|
||||
EditorNode::get_singleton()->edit_current();
|
||||
dock_context_popup->docks_updated();
|
||||
_update_docks_menu();
|
||||
EditorNode::get_singleton()->save_editor_layout_delayed();
|
||||
|
@ -3477,9 +3477,7 @@ 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();
|
||||
if (object->is_connected("property_list_changed", callable_mp(this, &EditorInspector::_changed_callback))) {
|
||||
object->disconnect("property_list_changed", callable_mp(this, &EditorInspector::_changed_callback));
|
||||
}
|
||||
object->disconnect("property_list_changed", callable_mp(this, &EditorInspector::_changed_callback));
|
||||
}
|
||||
per_array_page.clear();
|
||||
|
||||
@ -4021,13 +4019,14 @@ void EditorInspector::_notification(int p_what) {
|
||||
} break;
|
||||
|
||||
case NOTIFICATION_PREDELETE: {
|
||||
edit(nullptr);
|
||||
edit(nullptr); //just in case
|
||||
} 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: {
|
||||
|
Loading…
Reference in New Issue
Block a user