summary refs log tree commit diff
diff options
context:
space:
mode:
authorNicolas Werner <nicolas.werner@hotmail.de>2021-07-31 15:59:19 +0200
committerNicolas Werner <nicolas.werner@hotmail.de>2021-07-31 15:59:19 +0200
commit4c151cc3c7a6722930ea2b957d63204dd62b15ed (patch)
treef6181ce0e929c105814fb0ce69e950dd699ddd7d
parentFix annoying touch overlap in room list (diff)
downloadnheko-4c151cc3c7a6722930ea2b957d63204dd62b15ed.tar.xz
Fix C&P error for DeviceType
-rw-r--r--resources/qml/RoomList.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/resources/qml/RoomList.qml b/resources/qml/RoomList.qml

index 695b08f3..cbc65fc0 100644 --- a/resources/qml/RoomList.qml +++ b/resources/qml/RoomList.qml
@@ -185,7 +185,7 @@ Page { } gesturePolicy: TapHandler.ReleaseWithinBounds - acceptedDevices: PointerDevice.Mouse | PointerDevice.Stylus | DeviceType.TouchPad + acceptedDevices: PointerDevice.Mouse | PointerDevice.Stylus | PointerDevice.TouchPad } TapHandler { @@ -201,7 +201,7 @@ Page { HoverHandler { id: hovered - acceptedDevices: PointerDevice.Mouse | PointerDevice.Stylus | DeviceType.TouchPad + acceptedDevices: PointerDevice.Mouse | PointerDevice.Stylus | PointerDevice.TouchPad } }