From ef5d67e5bf084044f414249f1919f68dd2538289 Mon Sep 17 00:00:00 2001 From: Carl Schwan Date: Sat, 22 Jul 2023 20:34:10 +0200 Subject: [PATCH] Add back some spacing around the avatar in the timeline (cherry picked from commit b486cb905cebf878a799abda48986d03429b5f64) --- src/qml/Component/Timeline/TimelineContainer.qml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/qml/Component/Timeline/TimelineContainer.qml b/src/qml/Component/Timeline/TimelineContainer.qml index b30411b7e..17f77219c 100644 --- a/src/qml/Component/Timeline/TimelineContainer.qml +++ b/src/qml/Component/Timeline/TimelineContainer.qml @@ -361,6 +361,8 @@ ColumnLayout { anchors { left: parent.left leftMargin: Kirigami.Units.smallSpacing + top: parent.top + topMargin: Kirigami.Units.smallSpacing } visible: root.showAuthor && @@ -391,7 +393,8 @@ ColumnLayout { hoverEnabled: true anchors { - leftMargin: Kirigami.Units.smallSpacing + left: avatar.right + leftMargin: Kirigami.Units.largeSpacing rightMargin: Kirigami.Units.largeSpacing } // HACK: anchoring didn't reset anchors.right when switching from parent.right to undefined reliably