Fix initial dock tabs

This commit is contained in:
kobewi
2025-11-27 17:29:43 +01:00
parent 3a97723ff2
commit 68e9cb4a97

View File

@ -721,7 +721,6 @@ void EditorDockManager::load_docks_from_config(Ref<ConfigFile> p_layout, const S
dock->hide();
} else {
dock->is_open = true;
dock->show();
}
}
@ -830,7 +829,6 @@ void EditorDockManager::open_dock(EditorDock *p_dock, bool p_set_current) {
return;
}
p_dock->show();
_update_layout();
}