Open the ConversationPopup when clicking on a post

This commit is contained in:
Christian Muehlhaeuser 2019-05-05 18:42:37 +02:00
parent a7ac9200a2
commit 359b5b9c7a
No known key found for this signature in database
GPG key ID: 3CF9FA45CA1EBB7E

View file

@ -136,8 +136,14 @@ ColumnLayout {
MouseArea {
anchors.fill: parent
acceptedButtons: Qt.NoButton // we don't want to eat clicks on the Label
cursorShape: parent.hoveredLink ? Qt.PointingHandCursor : Qt.ArrowCursor
// we don't want to eat clicks on the Label
acceptedButtons: parent.hoveredLink ? Qt.NoButton : Qt.LeftButton
cursorShape: Qt.PointingHandCursor
onClicked: function() {
uiBridge.loadConversation(messageid)
conversationPopup.open()
}
}
}