notif popup: don't show constantly internally

This commit is contained in:
end-4
2025-05-14 23:30:19 +02:00
parent 006b6c00d9
commit c1a8aca3fb
@@ -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<NotificationWidget> 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
}