From bce560b03b5b092b6f281de34aa2114f27efa212 Mon Sep 17 00:00:00 2001 From: Tobias Fella Date: Sun, 30 Jan 2022 23:21:00 +0100 Subject: [PATCH] Fix left margin in EncryptedDelegate --- imports/NeoChat/Component/Timeline/EncryptedDelegate.qml | 1 + 1 file changed, 1 insertion(+) diff --git a/imports/NeoChat/Component/Timeline/EncryptedDelegate.qml b/imports/NeoChat/Component/Timeline/EncryptedDelegate.qml index f9ef21462..f429da589 100644 --- a/imports/NeoChat/Component/Timeline/EncryptedDelegate.qml +++ b/imports/NeoChat/Component/Timeline/EncryptedDelegate.qml @@ -21,5 +21,6 @@ TimelineContainer { wrapMode: Text.WordWrap textFormat: Text.RichText Layout.maximumWidth: encryptedDelegate.bubbleMaxWidth + Layout.leftMargin: Config.showAvatarInTimeline ? Kirigami.Units.largeSpacing : 0 } }