From c6996c3ac262616198e94197d1c6b310d44508ee Mon Sep 17 00:00:00 2001 From: Dustin Mierau Date: Mon, 29 Jul 2024 19:07:47 -0700 Subject: Add drag and drop suppport for files to upload. Tighten up spacing on heirarchical lists. Add some extra HFS type to UTType conversion. Update to latest packages. --- Hotline/macOS/NewsView.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Hotline/macOS/NewsView.swift') diff --git a/Hotline/macOS/NewsView.swift b/Hotline/macOS/NewsView.swift index 45cb057..91bf2fe 100644 --- a/Hotline/macOS/NewsView.swift +++ b/Hotline/macOS/NewsView.swift @@ -147,7 +147,7 @@ struct NewsView: View { NewsItemView(news: newsItem, depth: 0).tag(newsItem.id) } .frame(maxWidth: .infinity, maxHeight: .infinity) - .environment(\.defaultMinListRowHeight, 34) + .environment(\.defaultMinListRowHeight, 28) .listStyle(.inset) .alternatingRowBackgrounds(.enabled) .contextMenu(forSelectionType: NewsInfo.self) { items in @@ -219,7 +219,7 @@ struct NewsView: View { VStack { HStack { ProgressView { - Text("Loading News") + Text("Loading Newsgroups") } .controlSize(.regular) } -- cgit