damus

nostr ios client
git clone git://jb55.com/damus
Log | Files | Refs | README | LICENSE

commit d479f7a55ab8c5579dd2913a04b305c1155e146a
parent 79ea4da2d28ddc9ca9f8e5bbee9543c16a4b9cfb
Author: OlegAba <mail@olegaba.com>
Date:   Thu, 29 Dec 2022 00:58:00 -0500

Fix padding on threads and search results view

Closes: #177
Changelog-Fixed: Fix padding on threads and search results views

Diffstat:
Mdamus/Views/SearchHomeView.swift | 2+-
Mdamus/Views/ThreadV2View.swift | 4++--
2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/damus/Views/SearchHomeView.swift b/damus/Views/SearchHomeView.swift @@ -55,7 +55,7 @@ struct SearchHomeView: View { // Fetch new information by unsubscribing and resubscribing to the relay model.unsubscribe() model.subscribe() - } + }.padding(.horizontal) } var MainContent: some View { diff --git a/damus/Views/ThreadV2View.swift b/damus/Views/ThreadV2View.swift @@ -287,8 +287,8 @@ struct ThreadV2View: View { ) }.buttonStyle(.plain) } - } - }.padding().navigationBarTitle("Thread") + }.padding() + }.navigationBarTitle("Thread") } } }