Add switch to disable volume normalization
This commit is contained in:
@@ -248,16 +248,6 @@ fun PlayerSettingsScreen() {
|
||||
)
|
||||
}
|
||||
|
||||
// SwitchSettingEntry(
|
||||
// title = "Persistent queue",
|
||||
// text = "Save and restore playing songs",
|
||||
// isChecked = preferences.persistentQueue,
|
||||
// onCheckedChange = {
|
||||
// preferences.persistentQueue = it
|
||||
// },
|
||||
// isEnabled = false
|
||||
// )
|
||||
|
||||
SwitchSettingEntry(
|
||||
title = "Skip silence",
|
||||
text = "Skip silent parts during playback",
|
||||
@@ -271,6 +261,15 @@ fun PlayerSettingsScreen() {
|
||||
}
|
||||
)
|
||||
|
||||
SwitchSettingEntry(
|
||||
title = "Loudness normalization",
|
||||
text = "Lower the volume to a standard level",
|
||||
isChecked = preferences.volumeNormalization,
|
||||
onCheckedChange = {
|
||||
preferences.volumeNormalization = it
|
||||
}
|
||||
)
|
||||
|
||||
SettingsEntry(
|
||||
title = "Equalizer",
|
||||
text = "Interact with the system equalizer",
|
||||
|
||||
Reference in New Issue
Block a user