From c6ff91bdb1d3190f061bd05e6095260565265cb7 Mon Sep 17 00:00:00 2001 From: Kateryna Kostiuk <kateryna.kostiuk@savoirfairelinux.com> Date: Mon, 22 Jan 2024 18:44:19 -0500 Subject: [PATCH] conversation: fix padding for big message Change-Id: I45dca8960401146ca3ac09e6c7ab6e2a2d012655 --- src/app/commoncomponents/TextMessageDelegate.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/commoncomponents/TextMessageDelegate.qml b/src/app/commoncomponents/TextMessageDelegate.qml index d10947f3e..d52fdeadc 100644 --- a/src/app/commoncomponents/TextMessageDelegate.qml +++ b/src/app/commoncomponents/TextMessageDelegate.qml @@ -68,7 +68,7 @@ SBSMessageBase { topPadding: bubble.isDeleted ? 6 : 10 bottomPadding: bubble.isDeleted ? 6 : 10 anchors.right: isOutgoing ? parent.right : undefined - anchors.rightMargin: isOutgoing && !isEmojiOnly ? root.timeWidth + root.editedWidth : 0 + anchors.rightMargin: isOutgoing && !isEmojiOnly && !bigMsg ? root.timeWidth + root.editedWidth : 0 text: { if (Body !== "" && ParsedBody.length === 0) { MessagesAdapter.parseMessage(Id, Body, UtilsAdapter.getAppValue(Settings.DisplayHyperlinkPreviews), root.colorUrl, bubble.color); -- GitLab