From b3616653e1f761518d05153daafbda0fcf60c8bc Mon Sep 17 00:00:00 2001 From: Dustin Mierau Date: Fri, 10 May 2024 17:18:21 -0700 Subject: Fix leading padding on rows in news. --- Hotline/macOS/NewsView.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Hotline') 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 -- cgit