From 6db79918da9df8b114c227195e671a1bebe9c75a Mon Sep 17 00:00:00 2001 From: Michael Alexsander Date: Thu, 19 Feb 2026 11:21:51 -0300 Subject: [PATCH] Fix closed docks still being present in the dock menu after being disabled --- editor/editor_node.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/editor/editor_node.cpp b/editor/editor_node.cpp index 1307d60331..c8942e6c83 100644 --- a/editor/editor_node.cpp +++ b/editor/editor_node.cpp @@ -7723,6 +7723,8 @@ void EditorNode::_feature_profile_changed() { editor_main_screen->set_button_enabled(EditorMainScreen::EDITOR_ASSETLIB, true); } } + + editor_dock_manager->update_docks_menu(); } void EditorNode::_bind_methods() {