Skip to content

Commit d2c019f

Browse files
committed
fix "+0 notifications"
1 parent 6b90e37 commit d2c019f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dots/.config/quickshell/ii/modules/waffle/notificationCenter/WNotificationGroup.qml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ MouseArea {
4444
width: ListView.view.width
4545
notification: modelData
4646
groupExpandControlMessage: {
47-
if (root.notifications.length === 0) return "";
47+
if (root.notifications.length <= 1) return "";
4848
if (!root.expanded) return Translation.tr("+%1 notifications").arg(root.notifications.length - 1);
4949
if (index === root.notifications.length - 1) return Translation.tr("See fewer");
5050
return "";

0 commit comments

Comments
 (0)