23 lines
446 B
QML
23 lines
446 B
QML
|
import StatusQ.Popups 0.1
|
||
|
|
||
|
import shared.controls.chat 1.0
|
||
|
|
||
|
StatusMenu {
|
||
|
id: root
|
||
|
|
||
|
property alias reactionsModel: emojiRow.reactionsModel
|
||
|
property alias messageReactionsModel: emojiRow.messageReactionsModel
|
||
|
|
||
|
signal toggleReaction(int emojiId)
|
||
|
|
||
|
width: emojiRow.width
|
||
|
|
||
|
MessageReactionsRow {
|
||
|
id: emojiRow
|
||
|
onToggleReaction: {
|
||
|
root.toggleReaction(emojiId)
|
||
|
root.close()
|
||
|
}
|
||
|
}
|
||
|
}
|