diff options
| author | Dustin Mierau <dustin@mierau.me> | 2024-05-13 14:12:42 -0700 |
|---|---|---|
| committer | Dustin Mierau <dustin@mierau.me> | 2024-05-13 14:12:42 -0700 |
| commit | f04aef1044687253fbc56a0db0f3a905540eb03d (patch) | |
| tree | bde1890ba122d7a04a3cde98fb5fd053ca181a9d /Hotline/macOS/ServerView.swift | |
| parent | 67050d06a3bc2d28e969cf1388eafa95400c35a3 (diff) | |
Refined news and file listing. Tweaked news icons. New tracker window icons. New server toolbar globe icon. Fixing disabling of toolbar buttons in files.
Diffstat (limited to 'Hotline/macOS/ServerView.swift')
| -rw-r--r-- | Hotline/macOS/ServerView.swift | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/Hotline/macOS/ServerView.swift b/Hotline/macOS/ServerView.swift index 21d7cbb..9b4c044 100644 --- a/Hotline/macOS/ServerView.swift +++ b/Hotline/macOS/ServerView.swift @@ -146,10 +146,10 @@ struct ServerView: View { @Binding var server: Server static var menuItems: [ServerMenuItem] = [ - ServerMenuItem(type: .chat, name: "Chat", image: "bubble.fill"), - ServerMenuItem(type: .board, name: "Board", image: "pin.fill"), - ServerMenuItem(type: .news, name: "News", image: "newspaper.fill"), - ServerMenuItem(type: .files, name: "Files", image: "folder.fill"), + ServerMenuItem(type: .chat, name: "Chat", image: "bubble"), + ServerMenuItem(type: .board, name: "Board", image: "pin"), + ServerMenuItem(type: .news, name: "News", image: "newspaper"), + ServerMenuItem(type: .files, name: "Files", image: "folder"), ] enum FocusFields { @@ -197,12 +197,12 @@ struct ServerView: View { .onChange(of: Prefs.shared.automaticMessage) { sendPreferences() } .toolbar { ToolbarItem(placement: .navigation) { - Image(systemName: "globe.americas.fill") - .renderingMode(.template) + Image("Server Large") +// .renderingMode(.template) .resizable() .scaledToFit() - .frame(width: 18) + .frame(width: 24) .opacity(controlActiveState == .inactive ? 0.4 : 1.0) } } |