diff options
Diffstat (limited to 'src/info-notification.vala')
-rw-r--r-- | src/info-notification.vala | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/info-notification.vala b/src/info-notification.vala index e093aae..4ddd814 100644 --- a/src/info-notification.vala +++ b/src/info-notification.vala @@ -82,13 +82,14 @@ public class IndicatorSound.InfoNotification: Notification switch (active_output) { case VolumeControl.ActiveOutput.SPEAKERS: case VolumeControl.ActiveOutput.HEADPHONES: - case VolumeControl.ActiveOutput.BLUETOOTH_HEADPHONES: - case VolumeControl.ActiveOutput.BLUETOOTH_SPEAKER: case VolumeControl.ActiveOutput.USB_SPEAKER: case VolumeControl.ActiveOutput.USB_HEADPHONES: case VolumeControl.ActiveOutput.HDMI_SPEAKER: case VolumeControl.ActiveOutput.HDMI_HEADPHONES: return "audio-volume-high"; + case VolumeControl.ActiveOutput.BLUETOOTH_HEADPHONES: + case VolumeControl.ActiveOutput.BLUETOOTH_SPEAKER: + return "audio-speakers-bluetooth-symbolic"; default: return ""; |