From be133b73c7c0781cde74258da2a455d14bc9feea Mon Sep 17 00:00:00 2001 From: purian23 Date: Fri, 13 Feb 2026 10:10:03 -0500 Subject: [PATCH] Truncate long title in groups --- quickshell/Modules/Notifications/Center/NotificationCard.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quickshell/Modules/Notifications/Center/NotificationCard.qml b/quickshell/Modules/Notifications/Center/NotificationCard.qml index f1307b84..4febbdd6 100644 --- a/quickshell/Modules/Notifications/Center/NotificationCard.qml +++ b/quickshell/Modules/Notifications/Center/NotificationCard.qml @@ -221,7 +221,7 @@ Rectangle { color: Theme.surfaceText font.pixelSize: Theme.fontSizeMedium font.weight: Font.Medium - width: parent.width + width: parent.width - ((notificationGroup?.count || 0) > 1 ? 10 : 0) elide: Text.ElideRight maximumLineCount: 1 visible: text.length > 0