diff options
author | Nicolas Werner <nicolas.werner@hotmail.de> | 2020-06-24 16:24:22 +0200 |
---|---|---|
committer | CH Chethan Reddy <40890937+Chethan2k1@users.noreply.github.com> | 2020-07-30 22:10:27 +0530 |
commit | 4862be06be6e32c1f4963feabfde010a9f64616c (patch) | |
tree | 5349820c286c2f9fbbd1d88ecc9f236fd77e8846 /resources/qml/emoji | |
parent | Some more changes (diff) | |
download | nheko-4862be06be6e32c1f4963feabfde010a9f64616c.tar.xz |
Fix presence indicator
Diffstat (limited to 'resources/qml/emoji')
-rw-r--r-- | resources/qml/emoji/EmojiPicker.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/resources/qml/emoji/EmojiPicker.qml b/resources/qml/emoji/EmojiPicker.qml index f75221d5..d2ca4da3 100644 --- a/resources/qml/emoji/EmojiPicker.qml +++ b/resources/qml/emoji/EmojiPicker.qml @@ -73,7 +73,7 @@ Popup { contentItem: Text { horizontalAlignment: Text.AlignHCenter verticalAlignment: Text.AlignVCenter - font.family: settings.emojiFont + font.family: Settings.emojiFont font.pixelSize: 36 text: model.unicode @@ -104,7 +104,7 @@ Popup { onClicked: { console.debug("Picked " + model.unicode + "in response to " + emojiPopup.event_id) emojiPopup.close() - timelineManager.queueReactionMessage(emojiPopup.event_id, model.unicode) + TimelineManager.queueReactionMessage(emojiPopup.room_id, emojiPopup.event_id, model.unicode) } } |