moment/harmonyqml/components/SidePane/RoomCategoryDelegate.qml

16 lines
280 B
QML
Raw Normal View History

import QtQuick 2.7
2019-04-29 02:45:12 +10:00
import "../Base" as Base
Base.HLabel {
width: roomList.width
// topPadding is provided by the roomList spacing
bottomPadding: roomList.spacing
text: section
elide: Text.ElideRight
maximumLineCount: 1
2019-04-29 01:01:38 +10:00
font.weight: Font.DemiBold
}