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
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View file

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

View file

@ -3,8 +3,9 @@
* Added scene queue.
### 🎨 Improvements
* Disable sounds on scene/marker wall previews by default.
* Improve Movie UI.
* Change performer text query to search by name and alias only.
### 🐛 Bug fixes
* Fix incorrect performer age calculation in UI.
* Fix incorrect performer age calculation in UI.