From 1e8f51fff6cd5b80f8e7392d56a9d23df3bdf436 Mon Sep 17 00:00:00 2001 From: Alexandra Betouni <31625338+alexandraB99@users.noreply.github.com> Date: Wed, 3 Nov 2021 22:58:21 +0200 Subject: [PATCH] refactor(desktop/chat) fixed sticker disappears when replying Closes #4023 --- ui/app/AppLayouts/Chat/views/CompactMessageView.qml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ui/app/AppLayouts/Chat/views/CompactMessageView.qml b/ui/app/AppLayouts/Chat/views/CompactMessageView.qml index 142575a367..ce302d5c89 100644 --- a/ui/app/AppLayouts/Chat/views/CompactMessageView.qml +++ b/ui/app/AppLayouts/Chat/views/CompactMessageView.qml @@ -429,7 +429,6 @@ Item { anchors.right: parent.right anchors.rightMargin: root.chatHorizontalPadding visible: !isEdit - ChatTextView { id: chatText store: root.store @@ -509,7 +508,7 @@ Item { anchors.left: parent.left anchors.leftMargin: root.chatVerticalPadding contentType: root.contentType - stickerData: root.messageStore.sticker + stickerData: sticker onLoaded: { root.messageStore.scrollToBottom(true, root.container) }