added more placement points for custom widgets

This commit is contained in:
zadam
2020-03-19 17:15:14 +01:00
parent 6dfc2755e7
commit ff426fc1fc
2 changed files with 14 additions and 0 deletions

View File

@@ -124,6 +124,7 @@ export default class DesktopLayout {
.child(new SearchBoxWidget())
.child(new SearchResultsWidget())
.child(appContext.mainTreeWidget)
.child(...this.customWidgets.get('left-pane'))
)
.child(new FlexContainer('column').id('center-pane')
.child(new FlexContainer('row').class('title-row')
@@ -137,6 +138,7 @@ export default class DesktopLayout {
)
.child(new TabCachingWidget(() => new PromotedAttributesWidget()))
.child(new TabCachingWidget(() => new NoteDetailWidget()))
.child(...this.customWidgets.get('center-pane'))
)
.child(new SidePaneContainer('right')
.cssBlock(RIGHT_PANE_CSS)