diff options
author | Ted Gould <ted@gould.cx> | 2014-03-04 15:29:57 -0600 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2014-03-04 15:29:57 -0600 |
commit | 8c23ea52648f4555403acf42a096e83853ff7e08 (patch) | |
tree | 33d9ba44ba7e378488927aba0da853ce11bd45e5 /src/service.vala | |
parent | 6a34818664b50a6b2e9157e6321ed663e9359b1d (diff) | |
download | ayatana-indicator-sound-8c23ea52648f4555403acf42a096e83853ff7e08.tar.gz ayatana-indicator-sound-8c23ea52648f4555403acf42a096e83853ff7e08.tar.bz2 ayatana-indicator-sound-8c23ea52648f4555403acf42a096e83853ff7e08.zip |
Make it so the desktop greeter doesn't have any players on it
Diffstat (limited to 'src/service.vala')
-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 075c6df..b4dae65 100644 --- a/src/service.vala +++ b/src/service.vala @@ -35,7 +35,7 @@ public class IndicatorSound.Service: Object { this.actions.add_action (this.create_mic_volume_action ()); 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_INACTIVE_PLAYERS)); + this.menus.insert ("desktop_greeter", new SoundMenu (null, SoundMenu.DisplayFlags.SHOW_MUTE | SoundMenu.DisplayFlags.DONT_SHOW_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)); |