aboutsummaryrefslogtreecommitdiff
path: root/src/volume-control-pulse.vala
diff options
context:
space:
mode:
authorXavi Garcia Mena <xavi.garcia.mena@canonical.com>2015-12-17 18:03:27 +0100
committerXavi Garcia Mena <xavi.garcia.mena@canonical.com>2015-12-17 18:03:27 +0100
commit093d3198061540ce76b2f526926cdbb6c929bcd8 (patch)
treed1afb56abeb9fc3f88d556745d2937c4106ae404 /src/volume-control-pulse.vala
parent7e7f4af3361d7275cb360db0e3dbff3aac569ebe (diff)
downloadayatana-indicator-sound-093d3198061540ce76b2f526926cdbb6c929bcd8.tar.gz
ayatana-indicator-sound-093d3198061540ce76b2f526926cdbb6c929bcd8.tar.bz2
ayatana-indicator-sound-093d3198061540ce76b2f526926cdbb6c929bcd8.zip
Added workaround for Maroon in Trouble, second option
Diffstat (limited to 'src/volume-control-pulse.vala')
-rw-r--r--src/volume-control-pulse.vala18
1 files changed, 16 insertions, 2 deletions
diff --git a/src/volume-control-pulse.vala b/src/volume-control-pulse.vala
index 3791f29..4bd3076 100644
--- a/src/volume-control-pulse.vala
+++ b/src/volume-control-pulse.vala
@@ -42,6 +42,7 @@ public class VolumeControlPulse : VolumeControl
private PulseAudio.Context context;
private bool _mute = true;
private bool _is_playing = false;
+ private bool _ignore_warning_this_time = false;
private VolumeControl.Volume _volume = new VolumeControl.Volume();
private double _mic_volume = 0.0;
private Settings _settings = new Settings ("com.canonical.indicator.sound");
@@ -347,7 +348,8 @@ public class VolumeControlPulse : VolumeControl
// Ignore changes from PULSE to avoid issues with
// some apps that change the volume in the sink
// We only take into account volume changes from the user
- //this.volume = vol;
+ this._ignore_warning_this_time = true;
+ this.volume = vol;
}
}
}
@@ -394,7 +396,8 @@ public class VolumeControlPulse : VolumeControl
// Ignore changes from PULSE to avoid issues with
// some apps that change the volume in the sink
// We only take into account volume changes from the user
- //this.volume = vol;
+ this._ignore_warning_this_time = true;
+ this.volume = vol;
} catch (GLib.Error e) {
warning ("unable to get volume for active role %s (%s)", sink_input_objp, e.message);
}
@@ -747,6 +750,17 @@ public class VolumeControlPulse : VolumeControl
private bool _warning_volume_enabled;
private double _warning_volume_norms; /* 1.0 == PA_VOLUME_NORM */
private bool _high_volume = false;
+ public override bool ignore_high_volume {
+ get {
+ if (_ignore_warning_this_time) {
+ warning("Ignore");
+ _ignore_warning_this_time = false;
+ return true;
+ }
+ return false;
+ }
+ set { }
+ }
public override bool high_volume {
get { return this._high_volume; }
private set { this._high_volume = value; }