From 64bb28e0179123c8931d1e6443691cd15be96eff Mon Sep 17 00:00:00 2001 From: Joel Klabo Date: Wed, 4 Jan 2023 14:39:05 -0800 Subject: [PATCH] Make Event in Reply View Scrollable Closes: #248 Changelog-Fixed: Make reply view scrollable --- damus/Views/ReplyView.swift | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/damus/Views/ReplyView.swift b/damus/Views/ReplyView.swift index 6dc9966..10d3c90 100644 --- a/damus/Views/ReplyView.swift +++ b/damus/Views/ReplyView.swift @@ -33,7 +33,9 @@ struct ReplyView: View { .foregroundColor(.gray) .font(.footnote) } - EventView(event: replying_to, highlight: .none, has_action_bar: false, damus: damus, show_friend_icon: true) + ScrollView { + EventView(event: replying_to, highlight: .none, has_action_bar: false, damus: damus, show_friend_icon: true) + } PostView(replying_to: replying_to, references: gather_reply_ids(our_pubkey: damus.pubkey, from: replying_to)) } .padding()