aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTed Gould <ted@gould.cx>2014-03-25 14:58:12 -0500
committerTed Gould <ted@gould.cx>2014-03-25 14:58:12 -0500
commita8a1745e8834ef73c3ad7f9dfab21b2cdbf4b4b4 (patch)
treead5909dd4ac9a5cedfcc1944472a79a850418b02
parent2dc2db93122060318cbba27fb706226aed1cf17e (diff)
downloadayatana-indicator-sound-a8a1745e8834ef73c3ad7f9dfab21b2cdbf4b4b4.tar.gz
ayatana-indicator-sound-a8a1745e8834ef73c3ad7f9dfab21b2cdbf4b4b4.tar.bz2
ayatana-indicator-sound-a8a1745e8834ef73c3ad7f9dfab21b2cdbf4b4b4.zip
Remove mute from the phone greeter
-rw-r--r--src/service.vala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/service.vala b/src/service.vala
index 0e32bfe..4e02769 100644
--- a/src/service.vala
+++ b/src/service.vala
@@ -39,7 +39,7 @@ public class IndicatorSound.Service: Object {
this.menus = new HashTable<string, SoundMenu> (str_hash, str_equal);
this.menus.insert ("desktop_greeter", new SoundMenu (null, SoundMenu.DisplayFlags.SHOW_MUTE | SoundMenu.DisplayFlags.HIDE_PLAYERS));
- this.menus.insert ("phone_greeter", new SoundMenu (null, SoundMenu.DisplayFlags.SHOW_MUTE | SoundMenu.DisplayFlags.HIDE_INACTIVE_PLAYERS));
+ this.menus.insert ("phone_greeter", new SoundMenu (null, SoundMenu.DisplayFlags.HIDE_INACTIVE_PLAYERS));
this.menus.insert ("desktop", new SoundMenu ("indicator.desktop-settings", SoundMenu.DisplayFlags.SHOW_MUTE));
this.menus.insert ("phone", new SoundMenu ("indicator.phone-settings", SoundMenu.DisplayFlags.HIDE_INACTIVE_PLAYERS));