diff --git a/ui/app/AppLayouts/Chat/ChatColumn.qml b/ui/app/AppLayouts/Chat/ChatColumn.qml index 10047f79ae..361a7717a0 100644 --- a/ui/app/AppLayouts/Chat/ChatColumn.qml +++ b/ui/app/AppLayouts/Chat/ChatColumn.qml @@ -309,6 +309,7 @@ Item { active: stackLayoutChatMessages.currentIndex === index sourceComponent: ChatMessages { id: chatMessages + messageList: messages messageContextMenuInst: MessageContextMenu { reactionModel: EmojiReactions { } } diff --git a/ui/app/AppLayouts/Chat/ChatColumn/ChatMessages.qml b/ui/app/AppLayouts/Chat/ChatColumn/ChatMessages.qml index b1538c5fdd..f819eff36b 100644 --- a/ui/app/AppLayouts/Chat/ChatColumn/ChatMessages.qml +++ b/ui/app/AppLayouts/Chat/ChatColumn/ChatMessages.qml @@ -22,6 +22,8 @@ Item { property alias scrollToMessage: chatLogView.scrollToMessage property var messageContextMenuInst + property var messageList: MessagesData {} + property real scrollY: chatLogView.visibleArea.yPosition * chatLogView.contentHeight property int newMessages: 0 property int countOnStartUp: 0