Skip to content
Snippets Groups Projects
Verified Commit 5b0bd267 authored by Nicolas Werner's avatar Nicolas Werner
Browse files

Fix annoying touch overlap in room list

parent 5b5a89b5
No related branches found
No related tags found
No related merge requests found
Pipeline #1503 passed
......@@ -212,9 +212,9 @@ ScrollView {
// force current read index to update
onTriggered: {
if (chat.model) {
if (chat.model)
chat.model.setCurrentIndex(chat.model.currentIndex);
}
}
interval: 1000
}
......
......@@ -172,31 +172,38 @@ Page {
}
]
TapHandler {
margin: -Nheko.paddingSmall
acceptedButtons: Qt.RightButton
onSingleTapped: {
if (!TimelineManager.isInvite)
roomContextMenu.show(roomId, tags);
// NOTE(Nico): We want to prevent the touch areas from overlapping. For some reason we need to add 1px of padding for that...
Item {
anchors.fill: parent
anchors.margins: 1
TapHandler {
acceptedButtons: Qt.RightButton
onSingleTapped: {
if (!TimelineManager.isInvite)
roomContextMenu.show(roomId, tags);
}
gesturePolicy: TapHandler.ReleaseWithinBounds
acceptedDevices: PointerDevice.Mouse | PointerDevice.Stylus | DeviceType.TouchPad
}
gesturePolicy: TapHandler.ReleaseWithinBounds
}
TapHandler {
margin: -Nheko.paddingSmall
onSingleTapped: Rooms.setCurrentRoom(roomId)
onLongPressed: {
if (!isInvite)
roomContextMenu.show(roomId, tags);
TapHandler {
margin: -Nheko.paddingSmall
onSingleTapped: Rooms.setCurrentRoom(roomId)
onLongPressed: {
if (!isInvite)
roomContextMenu.show(roomId, tags);
}
}
}
HoverHandler {
id: hovered
HoverHandler {
id: hovered
acceptedDevices: PointerDevice.Mouse | PointerDevice.Stylus | DeviceType.TouchPad
}
margin: -Nheko.paddingSmall
}
RowLayout {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment