From c28d4054ef3003e5a0c07a5b0faae20a6aeb237d Mon Sep 17 00:00:00 2001 From: Pascal Precht Date: Tue, 23 Mar 2021 15:25:07 +0100 Subject: [PATCH] fix(Chat): ensure chat reply separator doesn't leak into message Fixes #1988 --- .../AppLayouts/Chat/ChatColumn/MessageComponents/ChatReply.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/app/AppLayouts/Chat/ChatColumn/MessageComponents/ChatReply.qml b/ui/app/AppLayouts/Chat/ChatColumn/MessageComponents/ChatReply.qml index d17c2627de..8297b74826 100644 --- a/ui/app/AppLayouts/Chat/ChatColumn/MessageComponents/ChatReply.qml +++ b/ui/app/AppLayouts/Chat/ChatColumn/MessageComponents/ChatReply.qml @@ -85,7 +85,7 @@ Loader { Separator { anchors.top: repliedMessageType == Constants.imageType ? imgReplyImage.bottom : lblReplyMessage.bottom - anchors.topMargin: repliedMessageType == Constants.imageType ? 15 : 8 + anchors.topMargin: Style.current.halfPadding anchors.left: lblReplyMessage.left anchors.right: lblReplyMessage.right anchors.rightMargin: root.chatHorizontalPadding