From c3a17f951ead95627ae31aa49d20c20e5feb956f Mon Sep 17 00:00:00 2001 From: Tobias Fella Date: Wed, 12 Jun 2024 17:51:21 +0200 Subject: [PATCH] Only enable taphandler for mouse clicks BUG: 486545 --- src/qml/RoomDelegate.qml | 1 + 1 file changed, 1 insertion(+) diff --git a/src/qml/RoomDelegate.qml b/src/qml/RoomDelegate.qml index 79b6c3013..4e582cbcc 100644 --- a/src/qml/RoomDelegate.qml +++ b/src/qml/RoomDelegate.qml @@ -47,6 +47,7 @@ Delegates.RoundedItemDelegate { TapHandler { acceptedButtons: Qt.RightButton + acceptedDevices: PointerDevice.Mouse | PointerDevice.TouchPad | PointerDevice.Stylus onTapped: (eventPoint, button) => root.createRoomListContextMenu() }