diff options
author | Ted Gould <ted@gould.cx> | 2014-03-25 14:58:12 -0500 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2014-03-25 14:58:12 -0500 |
commit | a8a1745e8834ef73c3ad7f9dfab21b2cdbf4b4b4 (patch) | |
tree | ad5909dd4ac9a5cedfcc1944472a79a850418b02 | |
parent | 2dc2db93122060318cbba27fb706226aed1cf17e (diff) | |
download | ayatana-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.vala | 2 |
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)); |