From ea7c858020a930210e0dd20a0696e4bca8f4a3d1 Mon Sep 17 00:00:00 2001 From: Lumaa Date: Fri, 26 Jan 2024 23:09:25 +0100 Subject: [PATCH] Moved PostMenu from Compact --- Threaded/Components/Post/CompactPostView.swift | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Threaded/Components/Post/CompactPostView.swift b/Threaded/Components/Post/CompactPostView.swift index ce889e3..3a94fc0 100644 --- a/Threaded/Components/Post/CompactPostView.swift +++ b/Threaded/Components/Post/CompactPostView.swift @@ -24,6 +24,8 @@ struct CompactPostView: View { var body: some View { VStack { + notices + statusPost(status.reblogAsAsStatus ?? status) if !quoted && !imaging { @@ -164,7 +166,7 @@ struct CompactPostView: View { if !imaging { PostMenu(status: status) - .offset(x: -10, y: 10) + .padding([.trailing, .top]) .contentShape(Rectangle()) } }