commit bcb40a6ec7703827f7cf4bfaa55b6c2d5b1a9e6d
parent 2f1063b49ffc0ab16f851fa5397cce3c5776923f
Author: William Casarin <jb55@jb55.com>
Date: Sat, 14 Jan 2023 09:30:22 -0800
Fix text getting truncated next to link previews
Changelog-Fixed: Fix text getting truncated next to link previews
Diffstat:
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git 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)