From 55efc9165ebf8ae880f7775b5d6676753af6e425 Mon Sep 17 00:00:00 2001 From: Devin Lin Date: Fri, 8 Apr 2022 17:02:25 -0400 Subject: [PATCH] widgets/notifications: Fix background clicking being on top of notifications --- .../qml/widgets/notifications/NotificationsWidget.qml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/components/mobileshell/qml/widgets/notifications/NotificationsWidget.qml b/components/mobileshell/qml/widgets/notifications/NotificationsWidget.qml index eea4d823..63bec1fa 100644 --- a/components/mobileshell/qml/widgets/notifications/NotificationsWidget.qml +++ b/components/mobileshell/qml/widgets/notifications/NotificationsWidget.qml @@ -124,9 +124,11 @@ Item { criteria: ViewSection.FullString } + // implement background clicking signal MouseArea { anchors.fill: parent onClicked: root.backgroundClicked() + z: -1 // ensure that this is below notification items so we don't steal button clicks } PlasmaExtras.PlaceholderMessage {