moment/harmonyqml/components/Chat/RoomSidePane/RoomSidePane.qml
miruka 82edb4fc29 Fix HListView delegate height bug
Remove the populate transition animation, responsible for the glitch
where items overlap each others
2019-05-17 15:18:46 -04:00

15 lines
227 B
QML

import QtQuick 2.7
import QtQuick.Layouts 1.3
import "../../Base"
HRectangle {
id: roomSidePane
property bool collapsed: false
property var activeView: null
MembersView {
anchors.fill: parent
}
}