action center: scrollable quick sliders (#2536)

This commit is contained in:
end-4
2025-11-21 22:18:56 +01:00
parent 35a1f7906a
commit fbfb81c83b
2 changed files with 19 additions and 1 deletions
@@ -33,6 +33,7 @@ ColumnLayout {
WSlider {
Layout.fillWidth: true
value: root.brightnessMonitor?.brightness ?? 0
scrollable: true
onMoved: {
root.brightnessMonitor?.setBrightness(value)
}
@@ -54,6 +55,7 @@ ColumnLayout {
WSlider {
Layout.fillWidth: true
value: Audio.sink.audio.volume
scrollable: true
onMoved: {
Audio.sink.audio.volume = value;
}