82edb4fc29
Remove the populate transition animation, responsible for the glitch where items overlap each others
15 lines
227 B
QML
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
|
|
}
|
|
}
|