From 734fb7e28690f3878ae60ff7aec025d2c8987078 Mon Sep 17 00:00:00 2001 From: Nicolas Werner Date: Sun, 14 Feb 2021 01:56:46 +0100 Subject: [PATCH] Add double tap to reply feature Does not always work, since Text steals focus... relates to #414 --- resources/qml/TimelineRow.qml | 1 + 1 file changed, 1 insertion(+) diff --git a/resources/qml/TimelineRow.qml b/resources/qml/TimelineRow.qml index 3a2ed627..b731d29d 100644 --- a/resources/qml/TimelineRow.qml +++ b/resources/qml/TimelineRow.qml @@ -29,6 +29,7 @@ Item { TapHandler { onLongPressed: messageContextMenu.show(model.id, model.type, model.isEncrypted, model.isEditable, row, mapToItem(timelineRoot, point.position.x, point.position.y)) + onDoubleTapped: chat.model.reply = model.id } RowLayout {