diff options
Diffstat (limited to 'Hotline/macOS/HotlinePanelView.swift')
| -rw-r--r-- | Hotline/macOS/HotlinePanelView.swift | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Hotline/macOS/HotlinePanelView.swift b/Hotline/macOS/HotlinePanelView.swift index 36204a7..d136869 100644 --- a/Hotline/macOS/HotlinePanelView.swift +++ b/Hotline/macOS/HotlinePanelView.swift @@ -45,10 +45,10 @@ struct HotlinePanelView: View { .help("Public Chat") Button { - ApplicationState.shared.activeServerState?.selection = .news + ApplicationState.shared.activeServerState?.selection = .board } label: { - Image(systemName: "newspaper.fill") + Image(systemName: "pin.fill") .resizable() .scaledToFit() } @@ -56,13 +56,13 @@ struct HotlinePanelView: View { .frame(width: 18, height: 18) .opacity(ApplicationState.shared.activeServerState == nil ? 0.5 : 1.0) .disabled(ApplicationState.shared.activeServerState == nil) - .help("News") + .help("Message Board") Button { - ApplicationState.shared.activeServerState?.selection = .board + ApplicationState.shared.activeServerState?.selection = .news } label: { - Image(systemName: "pin.fill") + Image(systemName: "newspaper.fill") .resizable() .scaledToFit() } @@ -70,7 +70,7 @@ struct HotlinePanelView: View { .frame(width: 18, height: 18) .opacity(ApplicationState.shared.activeServerState == nil ? 0.5 : 1.0) .disabled(ApplicationState.shared.activeServerState == nil) - .help("Message Board") + .help("News") Button { ApplicationState.shared.activeServerState?.selection = .files |