2019-03-26 18:19:55 +11:00
|
|
|
import QtQuick 2.7
|
|
|
|
import QtQuick.Controls 2.2
|
|
|
|
import QtQuick.Layouts 1.4
|
2019-03-26 20:52:43 +11:00
|
|
|
import "../base" as Base
|
2019-03-26 18:19:55 +11:00
|
|
|
|
|
|
|
Rectangle {
|
|
|
|
id: sidePane
|
|
|
|
color: "gray"
|
|
|
|
clip: true // Avoid artifacts when resizing pane width to minimum
|
|
|
|
|
|
|
|
ColumnLayout {
|
|
|
|
anchors.fill: parent
|
|
|
|
spacing: 0
|
|
|
|
|
|
|
|
AccountList {
|
|
|
|
Layout.fillWidth: true
|
|
|
|
Layout.fillHeight: true
|
|
|
|
}
|
|
|
|
|
2019-03-26 20:52:43 +11:00
|
|
|
HToolBar {}
|
2019-03-26 18:19:55 +11:00
|
|
|
}
|
|
|
|
}
|