Skip to content

Commit 7e2337b

Browse files
johnlarkin1claude
andcommitted
ux: move "Color-coded icons" toggle into the Display pane
The toggle lived under Advanced, making it hard to find next to the other menu-bar appearance settings. Move it into Display ▸ Menu Bar (default stays on) so the disable option sits where users look for menu-bar icon options. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
1 parent 7f53c17 commit 7e2337b

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

Sources/CodexBar/PreferencesAdvancedPane.swift

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -64,10 +64,6 @@ struct AdvancedPane: View {
6464
title: L("surprise_me_title"),
6565
subtitle: L("surprise_me_subtitle"),
6666
binding: self.$settings.randomBlinkEnabled)
67-
PreferenceToggleRow(
68-
title: "Color-coded icons",
69-
subtitle: "Tint menu bar icons green, yellow, or red based on session usage.",
70-
binding: self.$settings.colorCodedIcons)
7167
PreferenceToggleRow(
7268
title: L("weekly_limit_confetti_title"),
7369
subtitle: L("weekly_limit_confetti_subtitle"),

Sources/CodexBar/PreferencesDisplayPane.swift

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,10 @@ struct DisplayPane: View {
3737
binding: self.$settings.menuBarShowsHighestUsage)
3838
.disabled(!self.settings.mergeIcons)
3939
.opacity(self.settings.mergeIcons ? 1 : 0.5)
40+
PreferenceToggleRow(
41+
title: "Color-coded icons",
42+
subtitle: "Tint menu bar icons green, yellow, or red based on session usage.",
43+
binding: self.$settings.colorCodedIcons)
4044
PreferenceToggleRow(
4145
title: L("menu_bar_shows_percent_title"),
4246
subtitle: L("menu_bar_shows_percent_subtitle"),

0 commit comments

Comments
 (0)