AudioTab: warning fix

This commit is contained in:
ItsLemmy
2025-09-24 09:46:59 -04:00
parent 5669debd6b
commit 58fb397e79
+1 -3
View File
@@ -55,9 +55,7 @@ ColumnLayout {
value: localVolume
stepSize: 0.01
text: Math.round(AudioService.volume * 100) + "%"
onMoved: {
localVolume = value
}
onMoved: value => localVolume = value
}
}