From bcb40a6ec7703827f7cf4bfaa55b6c2d5b1a9e6d Mon Sep 17 00:00:00 2001 From: William Casarin Date: Sat, 14 Jan 2023 09:30:22 -0800 Subject: [PATCH] Fix text getting truncated next to link previews Changelog-Fixed: Fix text getting truncated next to link previews --- damus/Views/NoteContentView.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/damus/Views/NoteContentView.swift b/damus/Views/NoteContentView.swift index e1038077..d74de677 100644 --- a/damus/Views/NoteContentView.swift +++ b/damus/Views/NoteContentView.swift @@ -74,6 +74,7 @@ struct NoteContentView: View { return VStack(alignment: .leading) { Text(Markdown.parse(content: artifacts.content)) .font(eventviewsize_to_font(size)) + .fixedSize(horizontal: false, vertical: true) if show_images && artifacts.images.count > 0 { ImageCarousel(urls: artifacts.images)