AudioTab: fixed spinbox

This commit is contained in:
LemmyCook 2025-09-14 20:53:42 -04:00
parent 5aa7ff7e91
commit 519a85b251
2 changed files with 2 additions and 4 deletions

View file

@ -126,7 +126,7 @@ ColumnLayout {
value: Settings.data.audio.volumeStep
stepSize: 1
suffix: "%"
onValueChanged: value => Settings.data.audio.volumeStep = value
onValueChanged: Settings.data.audio.volumeStep = value
}
}

View file

@ -221,9 +221,7 @@ ColumnLayout {
value: Settings.data.brightness.brightnessStep
stepSize: 1
suffix: "%"
onValueChanged: {
Settings.data.brightness.brightnessStep = value
}
onValueChanged: Settings.data.brightness.brightnessStep = value
}
}
}