From c1a8aca3fb472d07d47b216e691248cf1e12c770 Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Wed, 14 May 2025 23:30:19 +0200 Subject: [PATCH] notif popup: don't show constantly internally --- .../modules/notificationPopup/NotificationPopup.qml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.config/quickshell/modules/notificationPopup/NotificationPopup.qml b/.config/quickshell/modules/notificationPopup/NotificationPopup.qml index 1d5e82739..8d5b0549c 100644 --- a/.config/quickshell/modules/notificationPopup/NotificationPopup.qml +++ b/.config/quickshell/modules/notificationPopup/NotificationPopup.qml @@ -20,7 +20,7 @@ Scope { loading: true PanelWindow { id: root - visible: true + visible: (columnLayout.children.length > 0 || notificationWidgetList.length > 0) property Component notifComponent: NotificationWidget {} property list notificationWidgetList: [] @@ -106,11 +106,6 @@ Scope { width: parent.width - Appearance.sizes.hyprlandGapsOut * 2 spacing: 0 // The widgets themselves have margins for spacing - Item { - implicitHeight: 1 - implicitWidth: 1 - } - // Notifications are added by the above signal handlers }