diff --git a/applets/notifications/package/contents/ui/FullRepresentation.qml b/applets/notifications/package/contents/ui/FullRepresentation.qml --- a/applets/notifications/package/contents/ui/FullRepresentation.qml +++ b/applets/notifications/package/contents/ui/FullRepresentation.qml @@ -451,7 +451,10 @@ PlasmaCore.SvgItem { elementId: "vertical-line" - svg: lineSvg + svg: PlasmaCore.Svg { + id: lineSvg + imagePath: "widgets/line" + } anchors.horizontalCenter: parent.horizontalCenter width: units.iconSizes.small height: parent.height diff --git a/applets/notifications/package/contents/ui/NotificationItem.qml b/applets/notifications/package/contents/ui/NotificationItem.qml --- a/applets/notifications/package/contents/ui/NotificationItem.qml +++ b/applets/notifications/package/contents/ui/NotificationItem.qml @@ -118,9 +118,12 @@ Layout.rightMargin: notificationItem.headingRightPadding background.visible: !notificationItem.inGroup + contentHeight: notificationHeading.implicitHeight + NotificationHeader { id: notificationHeading - anchors.fill: parent + anchors.fill: notificationItem.inGroup ? undefined : parent + Layout.fillWidth: true inGroup: notificationItem.inGroup @@ -132,6 +135,12 @@ onDismissClicked: notificationItem.dismissClicked() onCloseClicked: notificationItem.closeClicked() } + + MouseArea{ + anchors.fill: parent + onClicked: notificationItem.bodyClicked(mouse) + cursorShape: Qt.PointingHandCursor + } } RowLayout {