From b2f601df80c439b0ce539f1619a81a7e3b2e1dee Mon Sep 17 00:00:00 2001 From: Zoe Roux Date: Sun, 23 Nov 2025 14:36:38 +0100 Subject: [PATCH] Make empty notification list transparent --- Modules/Bar/Widgets/NotificationHistory.qml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Modules/Bar/Widgets/NotificationHistory.qml b/Modules/Bar/Widgets/NotificationHistory.qml index 66ca6c5a..1cb22ada 100644 --- a/Modules/Bar/Widgets/NotificationHistory.qml +++ b/Modules/Bar/Widgets/NotificationHistory.qml @@ -124,6 +124,8 @@ Item { // prevent open via mouse over forceClose: NotificationService.activeList.count == 0 + opacity: NotificationService.doNotDisturb || computeUnreadCount() > 0 ? 100 : 0 + onClicked: { var panel = PanelService.getPanel("notificationHistoryPanel", screen); panel?.toggle(this);