2019-04-28 15:45:42 -04:00
|
|
|
import QtQuick.Layouts 1.3
|
2019-04-28 00:44:55 -04:00
|
|
|
import QtGraphicalEffects 1.0
|
2019-04-28 15:18:36 -04:00
|
|
|
import "../Base"
|
2019-03-26 03:19:55 -04:00
|
|
|
|
2019-04-28 15:18:36 -04:00
|
|
|
HGlassRectangle {
|
2019-03-26 03:19:55 -04:00
|
|
|
id: sidePane
|
2019-04-28 11:01:38 -04:00
|
|
|
isPageStackDescendant: false
|
|
|
|
|
2019-04-28 15:18:36 -04:00
|
|
|
HColumnLayout {
|
2019-03-26 03:19:55 -04:00
|
|
|
anchors.fill: parent
|
|
|
|
|
|
|
|
AccountList {
|
|
|
|
Layout.fillWidth: true
|
|
|
|
Layout.fillHeight: true
|
2019-05-02 14:20:21 -04:00
|
|
|
|
|
|
|
Layout.leftMargin:
|
|
|
|
sidePane.width <= (sidePane.Layout.minimumWidth + spacing) ?
|
|
|
|
0 : spacing
|
2019-03-26 03:19:55 -04:00
|
|
|
}
|
|
|
|
|
2019-04-28 12:40:18 -04:00
|
|
|
PaneToolBar {}
|
2019-03-26 03:19:55 -04:00
|
|
|
}
|
|
|
|
}
|