b35e635be4
RoomSidePane's size and collapsing is not bound anymore to the RoomHeader buttons.
19 lines
299 B
QML
19 lines
299 B
QML
import QtQuick 2.7
|
|
import QtQuick.Layouts 1.3
|
|
import "../../Base"
|
|
|
|
HRectangle {
|
|
id: roomSidePane
|
|
|
|
property bool collapsed: false
|
|
|
|
HColumnLayout {
|
|
anchors.fill: parent
|
|
|
|
MembersView {
|
|
Layout.fillHeight: true
|
|
Layout.fillWidth: true
|
|
}
|
|
}
|
|
}
|