conversation: fix padding for big message

Change-Id: I45dca8960401146ca3ac09e6c7ab6e2a2d012655
This commit is contained in:
Kateryna Kostiuk
2024-01-22 18:44:19 -05:00
committed by Sébastien Blin
parent 99d415b1fe
commit c6ff91bdb1

View File

@@ -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);