mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-10 14:26:34 +00:00
96e50a97ac
Within this commit apart of `ChatContextMenuView` and `MessageContextMenuView` some other things are fixed: - pinned messages model (`asyncFetchChatMessagesTask`), which was corrupted most likely by resolving conflicts - `pinned by` part of the pinned messages - set/remove local nickname for a contact - contacts in a message list and pinned by name, contact in a pinned message list and pinned by name, one to one chat details and chat tool bar are updated in a way that they are responsive to the contact's updates - pinned messages updated received from remote (from the `status-go`) is handled Fixes #4366
31 lines
571 B
QML
31 lines
571 B
QML
import QtQuick 2.13
|
|
|
|
ListModel {
|
|
id: reactionModel
|
|
|
|
ListElement {
|
|
emojiId: 1
|
|
filename: "emojiReactions/heart"
|
|
}
|
|
ListElement {
|
|
emojiId: 2
|
|
filename: "emojiReactions/thumbsUp"
|
|
}
|
|
ListElement {
|
|
emojiId: 3
|
|
filename: "emojiReactions/thumbsDown"
|
|
}
|
|
ListElement {
|
|
emojiId: 4
|
|
filename: "emojiReactions/laughing"
|
|
}
|
|
ListElement {
|
|
emojiId: 5
|
|
filename: "emojiReactions/sad"
|
|
}
|
|
ListElement {
|
|
emojiId: 6
|
|
filename: "emojiReactions/angry"
|
|
}
|
|
}
|