aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorLars Uebernickel <lars.uebernickel@canonical.com>2014-03-19 18:22:09 +0100
committerLars Uebernickel <lars.uebernickel@canonical.com>2014-03-19 18:22:09 +0100
commit67c63fc4d15e239d15a76f22b4b6eadc1654e383 (patch)
tree44fe6355683114a15e84d5f175d2e3d7e2e233d6 /src
parentecc5c9ca2ee4ce8f92bd79d3a3a99956f239f63d (diff)
downloadayatana-indicator-sound-67c63fc4d15e239d15a76f22b4b6eadc1654e383.tar.gz
ayatana-indicator-sound-67c63fc4d15e239d15a76f22b4b6eadc1654e383.tar.bz2
ayatana-indicator-sound-67c63fc4d15e239d15a76f22b4b6eadc1654e383.zip
Use audio-volume-mute-blocking-panel instead of *-blocked-panel
Diffstat (limited to 'src')
-rw-r--r--src/service.vala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/service.vala b/src/service.vala
index 507a39e..2b3c84d 100644
--- a/src/service.vala
+++ b/src/service.vala
@@ -188,7 +188,7 @@ public class IndicatorSound.Service: Object {
double volume = this.volume_control.get_volume ();
string icon;
if (this.volume_control.mute)
- icon = this.mute_blocks_sound ? "audio-volume-muted-blocked-panel" : "audio-volume-muted-panel";
+ icon = this.mute_blocks_sound ? "audio-volume-muted-blocking-panel" : "audio-volume-muted-panel";
else if (volume <= 0.0)
icon = "audio-volume-low-zero-panel";
else if (volume <= 0.3)