From f23ef0a3d5d2195d3174643bbd9df0bbe3b59ad2 Mon Sep 17 00:00:00 2001 From: Xavi Garcia Mena Date: Tue, 1 Mar 2016 10:41:41 +0100 Subject: Set warning volume to the maximum allowed when the user presses cancel --- src/volume-warning.vala | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'src/volume-warning.vala') diff --git a/src/volume-warning.vala b/src/volume-warning.vala index 3c0f1e6..d43d34c 100644 --- a/src/volume-warning.vala +++ b/src/volume-warning.vala @@ -116,7 +116,9 @@ public abstract class VolumeWarning : Object && multimedia_active && !approved && (multimedia_volume != PulseAudio.Volume.INVALID) - && (multimedia_volume >= _options.loud_volume); + // from the sound specs: + // "Whenever you increase volume,..., such that acoustic output would be MORE than 85 dB + && (multimedia_volume > _options.loud_volume); if (high_volume != newval) { debug ("changing high_volume from %d to %d", (int)high_volume, (int)newval); @@ -198,8 +200,10 @@ public abstract class VolumeWarning : Object _notification.show (); this.active = true; - // lower the volume to just under the warning level - sound_system_set_multimedia_volume (_options.loud_volume-1); + // lower the volume to just the warning level + // from the sound specs: + // "Whenever you increase volume,..., such that acoustic output would be MORE than 85 dB + sound_system_set_multimedia_volume (_options.loud_volume); } private void on_user_response (IndicatorSound.WarnNotification.Response response) { -- cgit v1.2.3