From c3ee277edede730ffd06e288adcdd43cda0a47c8 Mon Sep 17 00:00:00 2001 From: Tobias Fella Date: Wed, 13 Jul 2022 14:59:16 +0200 Subject: [PATCH] Fix opening room using touch The previous fix wasn't enough for non-mobile touch devices. Now, we limit the TapHandler to mouse instead --- imports/NeoChat/Page/RoomListPage.qml | 1 + 1 file changed, 1 insertion(+) diff --git a/imports/NeoChat/Page/RoomListPage.qml b/imports/NeoChat/Page/RoomListPage.qml index 3024be331..1d0722d3c 100644 --- a/imports/NeoChat/Page/RoomListPage.qml +++ b/imports/NeoChat/Page/RoomListPage.qml @@ -233,6 +233,7 @@ Kirigami.ScrollablePage { } TapHandler { acceptedButtons: Qt.RightButton + acceptedDevices: PointerDevice.Mouse onTapped: createRoomListContextMenu() }