diff options
author | Ken VanDine <ken.vandine@canonical.com> | 2011-10-13 09:53:21 -0400 |
---|---|---|
committer | Bazaar Package Importer <james.westby@ubuntu.com> | 2011-10-13 09:53:21 -0400 |
commit | bf58931fb653267839b32c980425c3d2183157d2 (patch) | |
tree | 45e80b35b4a1647d369d4205d530e4c6c27cf2b3 /src | |
parent | aba0d7cff82cce46e80c4c26158da02561aef6cd (diff) | |
download | ayatana-indicator-sound-bf58931fb653267839b32c980425c3d2183157d2.tar.gz ayatana-indicator-sound-bf58931fb653267839b32c980425c3d2183157d2.tar.bz2 ayatana-indicator-sound-bf58931fb653267839b32c980425c3d2183157d2.zip |
Import upstream version 0.7.9
Diffstat (limited to 'src')
-rw-r--r-- | src/pulseaudio-mgr.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/pulseaudio-mgr.c b/src/pulseaudio-mgr.c index a31084a..1da8ce1 100644 --- a/src/pulseaudio-mgr.c +++ b/src/pulseaudio-mgr.c @@ -174,6 +174,10 @@ reconnect_to_pulse (gpointer user_data) void pm_update_volume (gint sink_index, pa_cvolume new_volume) { + // LP: #850662 + if (sink_index < 0){ + return; + } pa_operation_unref (pa_context_set_sink_volume_by_index (pulse_context, sink_index, &new_volume, @@ -192,6 +196,10 @@ pm_update_mute (gboolean update) void pm_update_mic_gain (gint source_index, pa_cvolume new_gain) { + // LP: #850662 + if (source_index < 0){ + return; + } pa_operation_unref (pa_context_set_source_volume_by_index (pulse_context, source_index, &new_gain, @@ -202,6 +210,10 @@ pm_update_mic_gain (gint source_index, pa_cvolume new_gain) void pm_update_mic_mute (gint source_index, gint mute_update) { + // LP: #850662 + if (source_index < 0){ + return; + } pa_operation_unref (pa_context_set_source_mute_by_index (pulse_context, source_index, mute_update, |