diff options
author | passivestar <60579014+passivestar@users.noreply.github.com> | 2024-06-09 11:51:41 +0400 |
---|---|---|
committer | passivestar <60579014+passivestar@users.noreply.github.com> | 2024-06-09 11:51:41 +0400 |
commit | 3cd245c7b189eb7b7f4b5110bff59a5b72f3c1b6 (patch) | |
tree | e049b4d893b2153481ccdd5f9dd317f9a7b03cb5 /editor | |
parent | 5833f597865c773fae3ee09fc4e31d4a243f812d (diff) | |
download | redot-engine-3cd245c7b189eb7b7f4b5110bff59a5b72f3c1b6.tar.gz |
Add missing inspector dock update after node deletion
Diffstat (limited to 'editor')
-rw-r--r-- | editor/scene_tree_dock.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/editor/scene_tree_dock.cpp b/editor/scene_tree_dock.cpp index c71cb9d4ac..d92d1c76b1 100644 --- a/editor/scene_tree_dock.cpp +++ b/editor/scene_tree_dock.cpp @@ -2674,6 +2674,7 @@ void SceneTreeDock::_delete_confirm(bool p_cut) { EditorSelectionHistory *editor_history = EditorNode::get_singleton()->get_editor_selection_history(); editor_history->cleanup_history(); InspectorDock::get_singleton()->call("_prepare_history"); + InspectorDock::get_singleton()->update(nullptr); } void SceneTreeDock::_update_script_button() { |