Make the workspace always open the dock

This commit is contained in:
Mikayla Maki 2023-03-08 14:38:33 -08:00
parent f62e0b502a
commit dad66eb3fb

View file

@ -742,6 +742,10 @@ impl Workspace {
cx.defer(move |_, cx| {
Self::load_from_serialized_workspace(weak_handle, serialized_workspace, cx)
});
} else {
if cx.global::<Settings>().default_dock_anchor != DockAnchor::Expanded {
Dock::show(&mut this, false, cx);
}
}
this