Fix opening room using touch

The previous fix wasn't enough for non-mobile touch devices. Now, we limit the TapHandler to mouse instead
This commit is contained in:
Tobias Fella
2022-07-13 14:59:16 +02:00
parent 78d62e9376
commit c3ee277ede

View File

@@ -233,6 +233,7 @@ Kirigami.ScrollablePage {
}
TapHandler {
acceptedButtons: Qt.RightButton
acceptedDevices: PointerDevice.Mouse
onTapped: createRoomListContextMenu()
}