2019-04-21 20:56:59 +10:00
|
|
|
import QtQuick 2.7
|
2019-04-29 05:18:36 +10:00
|
|
|
import "../Base"
|
2019-04-21 20:56:59 +10:00
|
|
|
|
2019-04-29 05:18:36 +10:00
|
|
|
HLabel {
|
2019-04-21 20:56:59 +10:00
|
|
|
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
|
2019-04-21 20:56:59 +10:00
|
|
|
}
|