From 5b49e36da4bab75ea71b5921fe84ffa53d48eca2 Mon Sep 17 00:00:00 2001 From: bbedward Date: Thu, 11 Sep 2025 18:49:17 -0400 Subject: [PATCH] elide text in app drawer --- Modals/Spotlight/SpotlightResults.qml | 1 + Modules/AppDrawer/AppDrawerPopout.qml | 1 + 2 files changed, 2 insertions(+) diff --git a/Modals/Spotlight/SpotlightResults.qml b/Modals/Spotlight/SpotlightResults.qml index 373b7837..08c65634 100644 --- a/Modals/Spotlight/SpotlightResults.qml +++ b/Modals/Spotlight/SpotlightResults.qml @@ -136,6 +136,7 @@ Rectangle { font.pixelSize: Theme.fontSizeMedium color: Theme.surfaceVariantText elide: Text.ElideRight + maximumLineCount: 1 visible: resultsList.showDescription && model.comment && model.comment.length > 0 } } diff --git a/Modules/AppDrawer/AppDrawerPopout.qml b/Modules/AppDrawer/AppDrawerPopout.qml index 112fe663..7cc2c74d 100644 --- a/Modules/AppDrawer/AppDrawerPopout.qml +++ b/Modules/AppDrawer/AppDrawerPopout.qml @@ -415,6 +415,7 @@ DankPopout { font.pixelSize: Theme.fontSizeMedium color: Theme.surfaceVariantText elide: Text.ElideRight + maximumLineCount: 1 visible: appList.showDescription && model.comment && model.comment.length > 0 } }