diff options
| author | Dustin Mierau <dustin@mierau.me> | 2024-07-29 19:07:47 -0700 |
|---|---|---|
| committer | Dustin Mierau <dustin@mierau.me> | 2024-07-29 19:07:47 -0700 |
| commit | c6996c3ac262616198e94197d1c6b310d44508ee (patch) | |
| tree | 6a4a3e98b7a2449a3d200bb5f4cc1c3c8b92b4ad /Hotline/macOS/ServerView.swift | |
| parent | 5726ab32f161e4b62ee0d65303b76d9894769c92 (diff) | |
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.
Diffstat (limited to 'Hotline/macOS/ServerView.swift')
| -rw-r--r-- | Hotline/macOS/ServerView.swift | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Hotline/macOS/ServerView.swift b/Hotline/macOS/ServerView.swift index 979a233..e9f4a96 100644 --- a/Hotline/macOS/ServerView.swift +++ b/Hotline/macOS/ServerView.swift @@ -469,7 +469,7 @@ struct ServerView: View { case .news: NewsView() .navigationTitle(model.serverTitle) - .navigationSubtitle("News") + .navigationSubtitle("Newsgroups") .navigationSplitViewColumnWidth(min: 250, ideal: 500) case .board: MessageBoardView() @@ -609,7 +609,7 @@ struct TransferItemView: View { HStack(alignment: .center, spacing: 5) { HStack(spacing: 0) { Spacer() - FileIconView(filename: transfer.title) + FileIconView(filename: transfer.title, fileType: nil) .frame(width: 16, height: 16) .opacity(controlActiveState == .inactive ? 0.5 : 1.0) // .padding(.leading, 2) |