summaryrefslogtreecommitdiff
path: root/modules/launcher/ActionItem.qml
diff options
context:
space:
mode:
Diffstat (limited to 'modules/launcher/ActionItem.qml')
-rw-r--r--modules/launcher/ActionItem.qml4
1 files changed, 3 insertions, 1 deletions
diff --git a/modules/launcher/ActionItem.qml b/modules/launcher/ActionItem.qml
index f4f90a2..a650768 100644
--- a/modules/launcher/ActionItem.qml
+++ b/modules/launcher/ActionItem.qml
@@ -43,7 +43,7 @@ Item {
anchors.verticalCenter: icon.verticalCenter
implicitWidth: parent.width - icon.width
- implicitHeight: childrenRect.height
+ implicitHeight: name.implicitHeight + desc.implicitHeight
StyledText {
id: name
@@ -53,6 +53,8 @@ Item {
}
StyledText {
+ id: desc
+
text: root.modelData?.desc ?? ""
font.pointSize: Appearance.font.size.small
color: Colours.alpha(Colours.palette.m3outline, true)