From d0a6bd34041b4c156cf23764f66b85b39c1ce3c2 Mon Sep 17 00:00:00 2001 From: Dominique Hummel Date: Mon, 4 Mar 2024 23:14:55 +0000 Subject: [PATCH] effects/windowview: use correct enum value for `PointerDevice` BUG: 482191 --- src/plugins/windowview/qml/main.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/windowview/qml/main.qml b/src/plugins/windowview/qml/main.qml index b7bc1e2910..491176496a 100644 --- a/src/plugins/windowview/qml/main.qml +++ b/src/plugins/windowview/qml/main.qml @@ -224,7 +224,7 @@ Item { onDownGestureTriggered: window.closeWindow() TapHandler { - acceptedPointerTypes: PointerDevice.GenericPointer | PointerDevice.Pen + acceptedPointerTypes: PointerDevice.Generic | PointerDevice.Pen acceptedButtons: Qt.MiddleButton onTapped: window.closeWindow(); }