diff options
| author | Dustin Mierau <dustin@mierau.me> | 2024-05-02 08:52:45 -0700 |
|---|---|---|
| committer | Dustin Mierau <dustin@mierau.me> | 2024-05-02 08:52:45 -0700 |
| commit | 34795d68125adc8af548380a211f2574024aa359 (patch) | |
| tree | a908b49a59937d8f16ca08472837d362cd94b98d /Hotline/macOS/HotlinePanelView.swift | |
| parent | bb1b116e7b00a226404573a36dab6c0f62fc0fd5 (diff) | |
Move message board up in navigation as it has always seemed higher level to me than news. Message board felt like big server news, vs News was more of users talking in a forum.
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 |