diff options
| author | Dustin Mierau <dustin@mierau.me> | 2024-05-10 17:18:21 -0700 |
|---|---|---|
| committer | Dustin Mierau <dustin@mierau.me> | 2024-05-10 17:18:21 -0700 |
| commit | b3616653e1f761518d05153daafbda0fcf60c8bc (patch) | |
| tree | 06a9da465a86ef646661df1eabb36261a8bdb3b4 /Hotline | |
| parent | 8ba7a5fa6ef7274339c3c709a2babb790e11e32b (diff) | |
Fix leading padding on rows in news.
Diffstat (limited to 'Hotline')
| -rw-r--r-- | Hotline/macOS/NewsView.swift | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Hotline/macOS/NewsView.swift b/Hotline/macOS/NewsView.swift index 906a9a4..201d3e2 100644 --- a/Hotline/macOS/NewsView.swift +++ b/Hotline/macOS/NewsView.swift @@ -260,11 +260,11 @@ struct NewsItemView: View { } .buttonStyle(.plain) .frame(width: 10) - .padding(.leading, 2) + .padding(.leading, 4) } else { Spacer() - .frame(width: 12) + .frame(width: 14) } // Tree indent |