added plugin buttons to the launcher pane

This commit is contained in:
zadam
2021-06-05 14:12:17 +02:00
parent 4bf1c25721
commit 8debf18984
3 changed files with 25 additions and 13 deletions

View File

@@ -69,7 +69,11 @@ export default class DesktopLayout {
.icon("bx-history")
.title("Show recent changes")
.command("showRecentChanges"))
.child(new SpacerWidget())
.child(new SpacerWidget(40, 0))
.child(new FlexContainer("column")
.overflowing()
.id("plugin-buttons"))
.child(new SpacerWidget(0, 1000))
.child(new ProtectedSessionStatusWidget())
.child(new SyncStatusWidget())
.child(new LeftPaneToggleWidget())
@@ -103,7 +107,7 @@ export default class DesktopLayout {
.overflowing()
.child(new NoteIconWidget())
.child(new NoteTitleWidget())
.child(new SpacerWidget(1))
.child(new SpacerWidget(0, 1))
.child(new ClosePaneButton())
.child(new CreatePaneButton())
)