diff options
author | Michal Ratajsky <[email protected]> | 2015-12-10 02:17:45 +0100 |
---|---|---|
committer | Michal Ratajsky <[email protected]> | 2015-12-10 02:17:45 +0100 |
commit | d62f85c3dc4f8de5fe5a59908cef705b9d0a3440 (patch) | |
tree | 5649627b2cdab66fd2820f8918c7fd75ec82dd84 /backends/pulse/pulse-ext-stream.c | |
parent | a64722f0eff22f9ba8af3999bfb168d9b020ddd8 (diff) | |
download | libmatemixer-d62f85c3dc4f8de5fe5a59908cef705b9d0a3440.tar.bz2 libmatemixer-d62f85c3dc4f8de5fe5a59908cef705b9d0a3440.tar.xz |
pulse: Fix volume limits as described on the PulseAudio wiki
Diffstat (limited to 'backends/pulse/pulse-ext-stream.c')
-rw-r--r-- | backends/pulse/pulse-ext-stream.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/pulse/pulse-ext-stream.c b/backends/pulse/pulse-ext-stream.c index 5922ef5..2ebf8e7 100644 --- a/backends/pulse/pulse-ext-stream.c +++ b/backends/pulse/pulse-ext-stream.c @@ -599,7 +599,7 @@ pulse_ext_stream_get_max_volume (MateMixerStreamControl *mmsc) { g_return_val_if_fail (PULSE_IS_EXT_STREAM (mmsc), (guint) PA_VOLUME_MUTED); - return (guint) PA_VOLUME_UI_MAX; + return (guint) PA_VOLUME_NORM; } static guint |