1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-06 12:20:30 +00:00

Merge pull request #99904 from kitbdev/fix-load-floating-dock

Fix loading layout with floating dock in single window mode and fix `restore_windows_on_load`
This commit is contained in:
Thaddeus Crews
2024-12-30 08:58:52 -06:00
3 changed files with 5 additions and 5 deletions

View File

@@ -5293,7 +5293,7 @@ void EditorNode::_load_editor_layout() {
}
} else {
ep.step(TTR("Loading docks..."), 1, true);
editor_dock_manager->load_docks_from_config(config, "docks");
editor_dock_manager->load_docks_from_config(config, "docks", true);
ep.step(TTR("Reopening scenes..."), 2, true);
_load_open_scenes_from_config(config);