aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTed Gould <ted@gould.cx>2014-09-23 10:32:07 -0500
committerTed Gould <ted@gould.cx>2014-09-23 10:32:07 -0500
commit4b0ce78d9b66ae752d55d3ba7405d6bd3e87408c (patch)
treeb197180916e42c9432c047ec1c27be1315ef86b9
parente87459657220f1cdc46e38c0b39f498ce6beac40 (diff)
downloadayatana-indicator-sound-4b0ce78d9b66ae752d55d3ba7405d6bd3e87408c.tar.gz
ayatana-indicator-sound-4b0ce78d9b66ae752d55d3ba7405d6bd3e87408c.tar.bz2
ayatana-indicator-sound-4b0ce78d9b66ae752d55d3ba7405d6bd3e87408c.zip
Selecting the greeter players for the greeter menus
-rw-r--r--src/service.vala4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/service.vala b/src/service.vala
index d715ff5..af65b33 100644
--- a/src/service.vala
+++ b/src/service.vala
@@ -38,8 +38,8 @@ 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_PLAYERS));
- this.menus.insert ("phone_greeter", new SoundMenu (null, SoundMenu.DisplayFlags.HIDE_INACTIVE_PLAYERS));
+ this.menus.insert ("desktop_greeter", new SoundMenu (null, SoundMenu.DisplayFlags.SHOW_MUTE | SoundMenu.DisplayFlags.HIDE_PLAYERS | SoundMenu.DisplayFlags.GREETER_PLAYERS));
+ this.menus.insert ("phone_greeter", new SoundMenu (null, SoundMenu.DisplayFlags.HIDE_INACTIVE_PLAYERS | SoundMenu.DisplayFlags.GREETER_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));