add setting to disable rounded image corners

This commit is contained in:
Drew Weymouth
2025-11-15 10:36:07 -08:00
parent 679e9a9b1f
commit 2afef81a11
14 changed files with 26 additions and 21 deletions
+5 -3
View File
@@ -148,8 +148,9 @@ type ReplayGainConfig struct {
}
type ThemeConfig struct {
ThemeFile string
Appearance string
ThemeFile string
Appearance string
UseRoundedImageCorners bool
}
type TranscodingConfig struct {
@@ -284,7 +285,8 @@ func DefaultConfig(appVersionTag string) *Config {
MaxBitRateKBPS: 160,
},
Theme: ThemeConfig{
Appearance: "Dark",
Appearance: "Dark",
UseRoundedImageCorners: true,
},
PeakMeter: PeakMeterConfig{
WindowWidth: 375,