From 8a20e5845ef49c6c777b37f6b710abf0ca0deebc Mon Sep 17 00:00:00 2001 From: kernelkind Date: Mon, 18 Dec 2023 12:55:12 -0500 Subject: [PATCH] Remove line break at the end of direct messages Closes: https://github.com/damus-io/damus/issues/1599 Changelog-Fixed: Remove extra space at the end of DM messages Signed-off-by: kernelkind Reviewed-by: William Casarin Signed-off-by: William Casarin --- damus/Views/DMView.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/damus/Views/DMView.swift b/damus/Views/DMView.swift index b6e51217..add5b326 100644 --- a/damus/Views/DMView.swift +++ b/damus/Views/DMView.swift @@ -45,7 +45,7 @@ struct DMView: View { NoteContentView(damus_state: damus_state, event: event, blur_images: should_blur_img, size: .normal, options: dm_options) .fixedSize(horizontal: false, vertical: true) .padding([.top, .leading, .trailing], 10) - .padding([.bottom], 25) + .padding([.bottom], 10) .background(VisualEffectView(effect: UIBlurEffect(style: .prominent)) .background(is_ours ? Color.accentColor.opacity(0.9) : Color.secondary.opacity(0.15)) )