Allow clicking links in replies

fixes #529
pull/841/head
Nicolas Werner 3 years ago
parent d36ba00ff6
commit b4ef2ce60c
No known key found for this signature in database
GPG Key ID: C8D75E610773F2D9
  1. 9
      resources/qml/delegates/Reply.qml

@ -60,7 +60,14 @@ Item {
TapHandler {
acceptedButtons: Qt.LeftButton
onSingleTapped: room.showEvent(r.eventId)
onSingleTapped: {
let link = reply.child.linkAt(eventPoint.position.x, eventPoint.position.y - userName_.implicitHeight);
if (link) {
Nheko.openLink(link)
} else {
room.showEvent(r.eventId)
}
}
gesturePolicy: TapHandler.ReleaseWithinBounds
}

Loading…
Cancel
Save