diff --git a/containments/homescreen/package/contents/ui/launcher/Delegate.qml b/containments/homescreen/package/contents/ui/launcher/Delegate.qml index dbed1a35..5bad84a2 100644 --- a/containments/homescreen/package/contents/ui/launcher/Delegate.qml +++ b/containments/homescreen/package/contents/ui/launcher/Delegate.qml @@ -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 diff --git a/containments/homescreen/package/contents/ui/launcher/LauncherContainer.qml b/containments/homescreen/package/contents/ui/launcher/LauncherContainer.qml index b484080f..23068336 100644 --- a/containments/homescreen/package/contents/ui/launcher/LauncherContainer.qml +++ b/containments/homescreen/package/contents/ui/launcher/LauncherContainer.qml @@ -45,7 +45,7 @@ Item { Controls.Label { id: metrics - text: "M\nM" + text: "M" visible: false }