Minor tweak to the label layout of running apps

This commit is contained in:
Cameron Gutman
2019-04-01 20:55:11 -07:00
parent de8b12f594
commit d4b0057423
+2 -2
View File
@@ -158,12 +158,12 @@ GridView {
visible: appIcon.isPlaceholder visible: appIcon.isPlaceholder
text: model.name text: model.name
width: appIcon.width width: appIcon.width
height: model.running ? 150 : appIcon.height height: model.running ? 175 : appIcon.height
anchors.left: appIcon.left anchors.left: appIcon.left
anchors.right: appIcon.right anchors.right: appIcon.right
anchors.bottom: appIcon.bottom anchors.bottom: appIcon.bottom
font.pointSize: 22 font.pointSize: 22
verticalAlignment: model.running ? Text.AlignTop : Text.AlignVCenter verticalAlignment: Text.AlignVCenter
horizontalAlignment: Text.AlignHCenter horizontalAlignment: Text.AlignHCenter
wrapMode: Text.Wrap wrapMode: Text.Wrap
elide: Text.ElideRight elide: Text.ElideRight