Swapped keyboard binding and did some minor tweaks to style and focus

This commit is contained in:
K Simmons 2022-09-07 20:32:28 -07:00
parent b88abcacac
commit 59fd967793
6 changed files with 24 additions and 10 deletions

View file

@ -2614,7 +2614,13 @@ impl View for Workspace {
)
.boxed()
})
.with_children(self.dock.render(&theme, DockAnchor::Expanded))
.with_children(self.dock.render(&theme, DockAnchor::Expanded).map(
|dock| {
Container::new(dock)
.with_style(theme.workspace.fullscreen_dock)
.boxed()
},
))
.with_children(self.modal.as_ref().map(|m| {
ChildView::new(m)
.contained()