diff --git a/panels/notification/center/OverlapNotify.qml b/panels/notification/center/OverlapNotify.qml index a2722bf87..db205ca1c 100644 --- a/panels/notification/center/OverlapNotify.qml +++ b/panels/notification/center/OverlapNotify.qml @@ -190,6 +190,17 @@ NotifyItem { root.expand() } } + + TapHandler { + acceptedButtons: Qt.RightButton + onPressedChanged: function () { + if (pressed) { + let pos = point.position + root.setting(pos) + } + } + } + Keys.onEnterPressed: root.expand() Keys.onReturnPressed: root.expand() }