Disable sounds on scene/marker wall previews by default (#1247)

This commit is contained in:
peolic
2021-04-01 08:10:56 +03:00
committed by GitHub
parent 1412b554a0
commit 35718ce59a
2 changed files with 3 additions and 2 deletions

View File

@@ -494,7 +494,7 @@ func GetMenuItems() []string {
} }
func GetSoundOnPreview() bool { func GetSoundOnPreview() bool {
viper.SetDefault(SoundOnPreview, true) viper.SetDefault(SoundOnPreview, false)
return viper.GetBool(SoundOnPreview) return viper.GetBool(SoundOnPreview)
} }

View File

@@ -3,6 +3,7 @@
* Added scene queue. * Added scene queue.
### 🎨 Improvements ### 🎨 Improvements
* Disable sounds on scene/marker wall previews by default.
* Improve Movie UI. * Improve Movie UI.
* Change performer text query to search by name and alias only. * Change performer text query to search by name and alias only.