mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 19:08:58 +03:00
Fix annoying touch overlap in room list
This commit is contained in:
parent
5b5a89b522
commit
5b0bd26795
2 changed files with 27 additions and 20 deletions
|
@ -212,9 +212,9 @@ ScrollView {
|
||||||
|
|
||||||
// force current read index to update
|
// force current read index to update
|
||||||
onTriggered: {
|
onTriggered: {
|
||||||
if (chat.model) {
|
if (chat.model)
|
||||||
chat.model.setCurrentIndex(chat.model.currentIndex);
|
chat.model.setCurrentIndex(chat.model.currentIndex);
|
||||||
}
|
|
||||||
}
|
}
|
||||||
interval: 1000
|
interval: 1000
|
||||||
}
|
}
|
||||||
|
|
|
@ -172,8 +172,12 @@ Page {
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
||||||
|
// 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 {
|
TapHandler {
|
||||||
margin: -Nheko.paddingSmall
|
|
||||||
acceptedButtons: Qt.RightButton
|
acceptedButtons: Qt.RightButton
|
||||||
onSingleTapped: {
|
onSingleTapped: {
|
||||||
if (!TimelineManager.isInvite)
|
if (!TimelineManager.isInvite)
|
||||||
|
@ -181,6 +185,7 @@ Page {
|
||||||
|
|
||||||
}
|
}
|
||||||
gesturePolicy: TapHandler.ReleaseWithinBounds
|
gesturePolicy: TapHandler.ReleaseWithinBounds
|
||||||
|
acceptedDevices: PointerDevice.Mouse | PointerDevice.Stylus | DeviceType.TouchPad
|
||||||
}
|
}
|
||||||
|
|
||||||
TapHandler {
|
TapHandler {
|
||||||
|
@ -196,7 +201,9 @@ Page {
|
||||||
HoverHandler {
|
HoverHandler {
|
||||||
id: hovered
|
id: hovered
|
||||||
|
|
||||||
margin: -Nheko.paddingSmall
|
acceptedDevices: PointerDevice.Mouse | PointerDevice.Stylus | DeviceType.TouchPad
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
RowLayout {
|
RowLayout {
|
||||||
|
|
Loading…
Reference in a new issue