summary refs log tree commit diff
path: root/resources
diff options
context:
space:
mode:
authorNicolas Werner <nicolas.werner@hotmail.de>2021-07-19 17:59:38 +0200
committerNicolas Werner <nicolas.werner@hotmail.de>2021-07-19 17:59:38 +0200
commit6d169cea7dfb4554ef09aceada33ba715b1df09c (patch)
treee87ddc40b41ad5a5203b56e9b0249197f6030a51 /resources
parentModel alias is still needed (diff)
downloadnheko-6d169cea7dfb4554ef09aceada33ba715b1df09c.tar.xz
Fix reaction button again
Diffstat (limited to 'resources')
-rw-r--r--resources/qml/MessageView.qml2
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();