diff options
author | Lars Uebernickel <lars.uebernickel@canonical.com> | 2013-10-10 15:46:54 +0200 |
---|---|---|
committer | Lars Uebernickel <lars.uebernickel@canonical.com> | 2013-10-10 15:46:54 +0200 |
commit | 071576b6e7b3d979c1fcefd611b67bac171f2877 (patch) | |
tree | 57fe5be3dd82bf341d94890ec1b505494e2a9a44 /src/service.vala | |
parent | 7ffdaac644f29bd1ee63a861f42a4ea8c26e52eb (diff) | |
download | ayatana-indicator-sound-071576b6e7b3d979c1fcefd611b67bac171f2877.tar.gz ayatana-indicator-sound-071576b6e7b3d979c1fcefd611b67bac171f2877.tar.bz2 ayatana-indicator-sound-071576b6e7b3d979c1fcefd611b67bac171f2877.zip |
Replace 'mute' boolean by a flag in the SoundMenu constructor
This makes the code calling the constructor more readable and allows for
extensibility.
Diffstat (limited to 'src/service.vala')
-rw-r--r-- | src/service.vala | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/service.vala b/src/service.vala index 1611608..9c75044 100644 --- a/src/service.vala +++ b/src/service.vala @@ -34,9 +34,9 @@ public class IndicatorSound.Service { 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 (true, null)); - this.menus.insert ("desktop", new SoundMenu (true, "indicator.desktop-settings")); - this.menus.insert ("phone", new SoundMenu (false, "indicator.phone-settings")); + this.menus.insert ("desktop_greeter", new SoundMenu (null, SoundMenu.DisplayFlags.SHOW_MUTE)); + this.menus.insert ("desktop", new SoundMenu ("indicator.desktop-settings", SoundMenu.DisplayFlags.SHOW_MUTE)); + this.menus.insert ("phone", new SoundMenu ("indicator.phone-settings", SoundMenu.DisplayFlags.NONE)); this.menus.@foreach ( (profile, menu) => { this.volume_control.bind_property ("active-mic", menu, "show-mic-volume", BindingFlags.SYNC_CREATE); |