Skip to content

Commit

Permalink
only migrate theme color if it's kept default
Browse files Browse the repository at this point in the history
  • Loading branch information
juzeon committed Mar 9, 2024
1 parent e0f0829 commit ec3c720
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion config.go
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,9 @@ func (o *Config) DoMigration() {
o.Migration.SydneyPreset20240304 = true
}
if !o.Migration.ThemeColor20240304 {
o.ThemeColor = "#00B8FF"
if o.ThemeColor == "#FF9800" {
o.ThemeColor = "#00B8FF"
}
o.Migration.ThemeColor20240304 = true
}
}
Expand Down

0 comments on commit ec3c720

Please sign in to comment.