From ef4ba155bcb9361e4a856ea35566bbaab8ecf6f1 Mon Sep 17 00:00:00 2001 From: Ted Gould Date: Thu, 2 Oct 2014 09:43:37 -0500 Subject: Use silent mode to determine the icon on the panel --- src/service.vala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/service.vala') diff --git a/src/service.vala b/src/service.vala index 8287b7f..280c12d 100644 --- a/src/service.vala +++ b/src/service.vala @@ -229,7 +229,7 @@ public class IndicatorSound.Service: Object { void update_root_icon () { double volume = this.volume_control.get_volume (); string icon; - if (this.volume_control.mute) + if (this.volume_control.mute || (this.accounts_service != null && this.accounts_service.silentMode)) 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"; -- cgit v1.2.3