diff options
author | Ted Gould <ted@gould.cx> | 2015-02-09 14:05:39 -0600 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2015-02-09 14:05:39 -0600 |
commit | 89466547b9547e0786e3919acab787f669798443 (patch) | |
tree | 97dd69d8580c3787b2a8d1dfff4229c7c231faac /src/service.vala | |
parent | 4d580e2c10e2df20480efc99c0c85367aae4d49e (diff) | |
download | ayatana-indicator-sound-89466547b9547e0786e3919acab787f669798443.tar.gz ayatana-indicator-sound-89466547b9547e0786e3919acab787f669798443.tar.bz2 ayatana-indicator-sound-89466547b9547e0786e3919acab787f669798443.zip |
Putting an interface in for volume control
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 b07f267..b435726 100644 --- a/src/service.vala +++ b/src/service.vala @@ -32,7 +32,7 @@ public class IndicatorSound.Service: Object { this.settings.bind ("visible", this, "visible", SettingsBindFlags.GET); this.notify["visible"].connect ( () => this.update_root_icon () ); - this.volume_control = new VolumeControl (); + this.volume_control = new VolumeControlPulse (); /* If we're on the greeter, don't export */ if (GLib.Environment.get_user_name() != "lightdm") { |