summaryrefslogtreecommitdiff
path: root/accounts/gkleen@sif/shell/quickshell/VolumeOSD.qml
diff options
context:
space:
mode:
Diffstat (limited to 'accounts/gkleen@sif/shell/quickshell/VolumeOSD.qml')
-rw-r--r--accounts/gkleen@sif/shell/quickshell/VolumeOSD.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/accounts/gkleen@sif/shell/quickshell/VolumeOSD.qml b/accounts/gkleen@sif/shell/quickshell/VolumeOSD.qml
index 653f4763..91dc9591 100644
--- a/accounts/gkleen@sif/shell/quickshell/VolumeOSD.qml
+++ b/accounts/gkleen@sif/shell/quickshell/VolumeOSD.qml
@@ -16,7 +16,7 @@ Scope {
16 16
17 Connections { 17 Connections {
18 enabled: Pipewire.defaultAudioSink 18 enabled: Pipewire.defaultAudioSink
19 target: Pipewire.defaultAudioSink?.audio 19 target: Pipewire.defaultAudioSink?.audio || null
20 20
21 function onVolumeChanged() { 21 function onVolumeChanged() {
22 root.show = "sink"; 22 root.show = "sink";
@@ -30,7 +30,7 @@ Scope {
30 30
31 Connections { 31 Connections {
32 enabled: Pipewire.defaultAudioSource 32 enabled: Pipewire.defaultAudioSource
33 target: Pipewire.defaultAudioSource?.audio 33 target: Pipewire.defaultAudioSource?.audio || null
34 34
35 function onVolumeChanged() { 35 function onVolumeChanged() {
36 root.show = "source"; 36 root.show = "source";