feat(status_bar): relocate to outside split area

This commit is contained in:
Elian Doran
2025-12-12 19:47:47 +02:00
parent 2d3776cd5f
commit d2b32ff5af
2 changed files with 4 additions and 1 deletions

View File

@@ -177,10 +177,10 @@ export default class DesktopLayout {
...this.customWidgets.get("node-detail-pane"), // typo, let's keep it for a while as BC ...this.customWidgets.get("node-detail-pane"), // typo, let's keep it for a while as BC
...this.customWidgets.get("note-detail-pane") ...this.customWidgets.get("note-detail-pane")
) )
.optChild(isNewLayout, <StatusBar />)
) )
) )
.child(...this.customWidgets.get("center-pane")) .child(...this.customWidgets.get("center-pane"))
) )
.child( .child(
new RightPaneContainer() new RightPaneContainer()
@@ -189,8 +189,10 @@ export default class DesktopLayout {
.child(...this.customWidgets.get("right-pane")) .child(...this.customWidgets.get("right-pane"))
) )
) )
.optChild(!launcherPaneIsHorizontal && isNewLayout, <StatusBar />)
) )
) )
.optChild(launcherPaneIsHorizontal && isNewLayout, <StatusBar />)
.child(<CloseZenModeButton />) .child(<CloseZenModeButton />)
// Desktop-specific dialogs. // Desktop-specific dialogs.

View File

@@ -5,6 +5,7 @@
display: flex; display: flex;
align-items: center; align-items: center;
padding-inline: 0.25em; padding-inline: 0.25em;
min-height: 32px;
> .breadcrumb-row { > .breadcrumb-row {
flex-grow: 1; flex-grow: 1;