moment/harmonyqml/components/sidePane/RoomCategoryDelegate.qml
miruka 2c5dc7bd4f Handle room invites
Add them to the roomList, and have separate sections:
Invites and Rooms.
2019-04-21 06:56:59 -04:00

17 lines
293 B
QML

import QtQuick 2.7
import "../base" as Base
Base.HLabel {
width: roomList.width
height: text.height
// topPadding is provided by the roomList spacing
bottomPadding: roomList.spacing
text: section
elide: Text.ElideRight
maximumLineCount: 1
font.bold: true
}