moment/harmonyqml/components/sidePane/RoomList.qml
miruka c866ac87a9 Remove quotes from id: properties
As suggested in the Qt Quick coding style
2019-04-20 17:45:51 -04:00

22 lines
463 B
QML

import QtQuick 2.7
import QtQuick.Controls 2.2
import QtQuick.Layouts 1.4
import "../base" as Base
ListView {
property var forUserId: null
property int childrenHeight: 36
property int contentHeight: 0
onCountChanged: {
contentHeight = childrenHeight * model.count +
spacing * (model.count - 1)
}
id: roomList
spacing: 8
model: Backend.models.rooms.get(forUserId)
delegate: RoomDelegate {}
}