Fix message long press
Add a tap handler so that long press events in the text of a message can be captured. This should make mobile menus work on text messages again.
This commit is contained in:
@@ -50,6 +50,12 @@ TimelineContainer {
|
|||||||
isReply: root.isReply
|
isReply: root.isReply
|
||||||
|
|
||||||
textMessage: root.display
|
textMessage: root.display
|
||||||
|
|
||||||
|
TapHandler {
|
||||||
|
enabled: !label.hoveredLink
|
||||||
|
acceptedButtons: Qt.LeftButton
|
||||||
|
onLongPressed: root.openContextMenu()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
Loader {
|
Loader {
|
||||||
Layout.fillWidth: true
|
Layout.fillWidth: true
|
||||||
|
|||||||
Reference in New Issue
Block a user