b9b6d2fcb3
To avoid RoomHeaderButton collapse bug due to the "slowly" changing Chat width.
31 lines
605 B
QML
31 lines
605 B
QML
import QtQuick 2.7
|
|
import QtQuick.Layouts 1.3
|
|
import "../Base"
|
|
|
|
HRectangle {
|
|
id: sidePane
|
|
|
|
property int normalSpacing: 8
|
|
property bool collapsed: false
|
|
|
|
HColumnLayout {
|
|
anchors.fill: parent
|
|
|
|
AccountList {
|
|
Layout.fillWidth: true
|
|
Layout.fillHeight: true
|
|
|
|
spacing: collapsed ? 0 : normalSpacing
|
|
topMargin: spacing
|
|
bottomMargin: spacing
|
|
Layout.leftMargin: spacing
|
|
|
|
Behavior on spacing {
|
|
NumberAnimation { duration: 120 }
|
|
}
|
|
}
|
|
|
|
PaneToolBar {}
|
|
}
|
|
}
|