From e77012919b20657e8d2b7fdd64e20aa86f1fe97c Mon Sep 17 00:00:00 2001 From: Jonathan Rainville Date: Wed, 28 Apr 2021 13:58:40 -0400 Subject: [PATCH] fix(CompactMessage): fix reactions overlapping with the test --- .../Chat/ChatColumn/MessageComponents/CompactMessage.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/app/AppLayouts/Chat/ChatColumn/MessageComponents/CompactMessage.qml b/ui/app/AppLayouts/Chat/ChatColumn/MessageComponents/CompactMessage.qml index bcecb73404..10d117725e 100644 --- a/ui/app/AppLayouts/Chat/ChatColumn/MessageComponents/CompactMessage.qml +++ b/ui/app/AppLayouts/Chat/ChatColumn/MessageComponents/CompactMessage.qml @@ -63,7 +63,7 @@ Item { anchors.topMargin: dateGroupLbl.visible ? Style.current.padding : 0 height: childrenRect.height + (chatName.visible || emojiReactionLoader.active ? Style.current.smallPadding : 0) - + (chatName.visible && emojiReactionLoader.active ? 5 : 0) + + (chatName.visible && emojiReactionLoader.active ? Style.current.padding : 0) + (emojiReactionLoader.active ? emojiReactionLoader.height: 0) + (retry.visible && !chatTime.visible ? Style.current.smallPadding : 0) width: parent.width