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