24 lines
466 B
QML
Raw Normal View History

import QtQuick 2.7
import QtQuick.Controls 2.2
import QtQuick.Layouts 1.4
2019-04-28 00:44:55 -04:00
import QtGraphicalEffects 1.0
2019-04-28 12:45:12 -04:00
import "../Base" as Base
2019-04-28 00:44:55 -04:00
Base.HGlassRectangle {
id: sidePane
clip: true // Avoid artifacts when resizing pane width to minimum
2019-04-28 11:01:38 -04:00
isPageStackDescendant: false
Base.HColumnLayout {
anchors.fill: parent
AccountList {
Layout.fillWidth: true
Layout.fillHeight: true
}
PaneToolBar {}
}
}