fix: don't replace filename with theme name on theme cycle (TASK-010)
391d0272a1b39b2189a5bf0846796195db7566e4
Kevin Kortum <kevinkortum@me.com> · 2026-06-29 16:18
parent 0b2e184d
fix: don't replace filename with theme name on theme cycle (TASK-010) The theme name already shows on the right of the status bar; cycleTheme no longer sets a transient 'Theme: …' message that overwrote the filename. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01KjNrdAWUdkaxFyGdrPHaBj
1 files changed
internal/app/app.go +2 −1
@@ -541,7 +541,8 @@ if a.picker != nil {
a.picker.SetTheme(a.theme)
a.picker.SetStyle(a.glamourStyle())
}
- a.status = "Theme: " + a.theme.Name
+ // The theme name already shows on the right of the status bar; don't clobber
+ // the filename on the left with a transient "Theme: …" message.
return a, nil
}