From ec22de8c248c914e5a11271fae5668f696ffbd55 Mon Sep 17 00:00:00 2001 From: Pascal Precht Date: Tue, 6 Oct 2020 13:14:15 +0200 Subject: [PATCH] uiux(Chat): add margin between group header messages and fetch-more button Closes #1087 --- ui/app/AppLayouts/Chat/ChatColumn/Message.qml | 1 + 1 file changed, 1 insertion(+) diff --git a/ui/app/AppLayouts/Chat/ChatColumn/Message.qml b/ui/app/AppLayouts/Chat/ChatColumn/Message.qml index eef6b1ee18..bfcafedebb 100644 --- a/ui/app/AppLayouts/Chat/ChatColumn/Message.qml +++ b/ui/app/AppLayouts/Chat/ChatColumn/Message.qml @@ -188,6 +188,7 @@ Item { horizontalAlignment: Text.AlignHCenter anchors.horizontalCenter: parent.horizontalCenter textFormat: Text.RichText + topPadding: messageItem.prevMessageIndex === 1 ? Style.current.bigPadding : 0 } }