diff options
author | Nicolas Werner <nicolas.werner@hotmail.de> | 2021-07-19 17:59:38 +0200 |
---|---|---|
committer | Nicolas Werner <nicolas.werner@hotmail.de> | 2021-07-19 17:59:38 +0200 |
commit | 6d169cea7dfb4554ef09aceada33ba715b1df09c (patch) | |
tree | e87ddc40b41ad5a5203b56e9b0249197f6030a51 /resources | |
parent | Model alias is still needed (diff) | |
download | nheko-6d169cea7dfb4554ef09aceada33ba715b1df09c.tar.xz |
Fix reaction button again
Diffstat (limited to 'resources')
-rw-r--r-- | resources/qml/MessageView.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/qml/MessageView.qml b/resources/qml/MessageView.qml index 4e605ad7..f56af237 100644 --- a/resources/qml/MessageView.qml +++ b/resources/qml/MessageView.qml @@ -101,7 +101,7 @@ ScrollView { image: ":/icons/icons/ui/smile.png" ToolTip.visible: hovered ToolTip.text: qsTr("React") - onClicked: emojiPopup.visible ? emojiPopup.close() : emojiPopup.show(emojiButton, function(emoji) { + onClicked: emojiPopup.visible ? emojiPopup.close() : emojiPopup.show(reactButton, function(emoji) { var event_id = row.model ? row.model.eventId : ""; room.input.reaction(event_id, emoji); TimelineManager.focusMessageInput(); |