From d4b0057423c5cb90e763293df8c84f08fd8c9c1a Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Mon, 1 Apr 2019 20:55:11 -0700 Subject: [PATCH] Minor tweak to the label layout of running apps --- app/gui/AppView.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/gui/AppView.qml b/app/gui/AppView.qml index 24c8895c..16a8dc6b 100644 --- a/app/gui/AppView.qml +++ b/app/gui/AppView.qml @@ -158,12 +158,12 @@ GridView { visible: appIcon.isPlaceholder text: model.name width: appIcon.width - height: model.running ? 150 : appIcon.height + height: model.running ? 175 : appIcon.height anchors.left: appIcon.left anchors.right: appIcon.right anchors.bottom: appIcon.bottom font.pointSize: 22 - verticalAlignment: model.running ? Text.AlignTop : Text.AlignVCenter + verticalAlignment: Text.AlignVCenter horizontalAlignment: Text.AlignHCenter wrapMode: Text.Wrap elide: Text.ElideRight