mirror of
https://github.com/muesli/telephant
synced 2025-02-16 19:48:24 +00:00
Open the ConversationPopup when clicking on a post
This commit is contained in:
parent
a7ac9200a2
commit
359b5b9c7a
1 changed files with 8 additions and 2 deletions
|
@ -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()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue