From f9a1b9566ecef1998bee73a08a740bb90c0bf4a3 Mon Sep 17 00:00:00 2001 From: Nate Graham Date: Fri, 9 Sep 2022 14:53:20 -0600 Subject: [PATCH] applets/notifications: stop suppressing dialog-information icon This will feel weird and random to the user, especially if they or one of their apps deliberately uses that icon and then it unexpectedly isn't displayed. This check feels too magical and unpredictable; let's remove it to simplify things. BUG: 458843 FIXED-IN: 5.26 --- applets/notifications/package/contents/ui/NotificationItem.qml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/applets/notifications/package/contents/ui/NotificationItem.qml b/applets/notifications/package/contents/ui/NotificationItem.qml index 434817fd7..fd2a41d35 100644 --- a/applets/notifications/package/contents/ui/NotificationItem.qml +++ b/applets/notifications/package/contents/ui/NotificationItem.qml @@ -287,8 +287,7 @@ ColumnLayout { anchors.fill: parent usesPlasmaTheme: false smooth: true - // don't show a generic "info" icon since this is a notification already - source: notificationItem.icon !== "dialog-information" ? notificationItem.icon : "" + source: notificationItem.icon visible: active }