diff --git a/modules/NotifCenter.qml b/modules/NotifCenter.qml index 0ba2372..a8f72aa 100644 --- a/modules/NotifCenter.qml +++ b/modules/NotifCenter.qml @@ -410,10 +410,24 @@ M.HoverPanel { } // ---- Individual notification ---- + + // Vertical connector line — visually ties notifs to their group header + Rectangle { + visible: notifDelegate._type === "notif" + anchors.left: parent.left + anchors.leftMargin: 3 + anchors.top: parent.top + anchors.bottom: parent.bottom + width: 2 + color: M.Theme.base02 + radius: 1 + } + M.NotifCard { id: _notifCard visible: notifDelegate._type === "notif" anchors.fill: parent + anchors.leftMargin: 8 notif: notifDelegate._notif showAppName: false iconSize: 24