From 2f6d1cb069a031ebd250454974e73d89b971c598 Mon Sep 17 00:00:00 2001 From: Shadowfacts Date: Wed, 9 Jun 2021 17:08:59 -0400 Subject: [PATCH] Use plain list style for Compose attachments --- Tusker/Screens/Compose/ComposeAttachmentsList.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/Tusker/Screens/Compose/ComposeAttachmentsList.swift b/Tusker/Screens/Compose/ComposeAttachmentsList.swift index c4186712..9ed91af8 100644 --- a/Tusker/Screens/Compose/ComposeAttachmentsList.swift +++ b/Tusker/Screens/Compose/ComposeAttachmentsList.swift @@ -69,6 +69,7 @@ struct ComposeAttachmentsList: View { .frame(height: cellHeight / 2) .listRowInsets(EdgeInsets(top: cellPadding / 2, leading: cellPadding / 2, bottom: cellPadding / 2, trailing: cellPadding / 2)) } + .listStyle(PlainListStyle()) .frame(height: totalListHeight) .onAppear(perform: self.didAppear) .onReceive(draft.$attachments, perform: self.attachmentsChanged)