diff options
author | Conor Curran <conor.curran@canonical.com> | 2010-01-31 15:30:29 +0000 |
---|---|---|
committer | Conor Curran <conor.curran@canonical.com> | 2010-01-31 15:30:29 +0000 |
commit | 329c77deb1bcbc85d24d68197405a6de8083b290 (patch) | |
tree | 7a63abaa8e565de71af4b999b70c6ad169d59328 /src/sound-service.c | |
parent | 0b66ce027d9fab70a01ada23f6b77035bbf6719f (diff) | |
download | ayatana-indicator-sound-329c77deb1bcbc85d24d68197405a6de8083b290.tar.gz ayatana-indicator-sound-329c77deb1bcbc85d24d68197405a6de8083b290.tar.bz2 ayatana-indicator-sound-329c77deb1bcbc85d24d68197405a6de8083b290.zip |
tidy up plus plugged back together the sinkinputwhilemuted event and the mute all toggle
Diffstat (limited to 'src/sound-service.c')
-rw-r--r-- | src/sound-service.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sound-service.c b/src/sound-service.c index 008e6f8..0587e10 100644 --- a/src/sound-service.c +++ b/src/sound-service.c @@ -70,7 +70,7 @@ static void rebuild_sound_menu(DbusmenuMenuitem *root, SoundServiceDbus *service static void set_global_mute() { b_all_muted = !b_all_muted; - g_debug("Mute is now = %i", b_all_muted); + toggle_global_mute(b_all_muted); dbusmenu_menuitem_property_set(mute_all_menuitem, DBUSMENU_MENUITEM_PROP_LABEL, _(b_all_muted == FALSE ? "Mute All" : "Unmute")); } |