From 969ec820c9455356dbf0bcf3a3d4628e00122b16 Mon Sep 17 00:00:00 2001 From: Artyom Kazak Date: Thu, 22 Dec 2022 23:37:08 +0100 Subject: [PATCH] Better post editor placeholder --- damus/Views/PostView.swift | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/damus/Views/PostView.swift b/damus/Views/PostView.swift index bc14d928..df75aeb8 100644 --- a/damus/Views/PostView.swift +++ b/damus/Views/PostView.swift @@ -77,8 +77,9 @@ struct PostView: View { if post.isEmpty { Text(POST_PLACEHOLDER) .padding(.top, 8) - .padding(.leading, 10) + .padding(.leading, 4) .foregroundColor(Color(uiColor: .placeholderText)) + .allowsHitTesting(false) } } }