smaller label, only one line of text

This commit is contained in:
Marco Martin 2019-10-09 16:21:46 +02:00
parent 5bd75786bc
commit ba9c60f54c
2 changed files with 4 additions and 5 deletions

View file

@ -126,15 +126,14 @@ ContainmentLayoutManager.ItemContainer {
visible: text.length > 0
Layout.fillWidth: true
Layout.preferredHeight: root.reservedSpaceForLabel
wrapMode: Text.WordWrap
horizontalAlignment: Text.AlignHCenter
verticalAlignment: Text.AlignTop
maximumLineCount: 2
elide: Text.ElideRight
text: model.ApplicationNameRole
font.pixelSize: theme.defaultFont.pixelSize
text: model.ApplicationNameRole.split(" ")[0]
//FIXME: export smallestReadableFont
font.pixelSize: theme.defaultFont.pixelSize * 0.8
color: model.ApplicationLocationRole == ApplicationListModel.Desktop ? "white" : theme.textColor
layer.enabled: model.ApplicationLocationRole == ApplicationListModel.Desktop

View file

@ -45,7 +45,7 @@ Item {
Controls.Label {
id: metrics
text: "M\nM"
text: "M"
visible: false
}