diff options
author | Lennart Poettering <lennart@poettering.net> | 2009-01-27 23:35:55 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2009-01-27 23:40:03 +0100 |
commit | 64b05435889678dcb154c460063395855659485e (patch) | |
tree | 880071bbd1b81710c34ff2dec8f8119ea29aac61 /src/modules/module-match.c | |
parent | ee17772cea3471b0e44fd1598f7ababa4100db0c (diff) |
when changing volume, store whether it is worth remembering or no
Diffstat (limited to 'src/modules/module-match.c')
-rw-r--r-- | src/modules/module-match.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/module-match.c b/src/modules/module-match.c index 8c825c4f..cbf62687 100644 --- a/src/modules/module-match.c +++ b/src/modules/module-match.c @@ -216,7 +216,7 @@ static void callback(pa_core *c, pa_subscription_event_type_t t, uint32_t idx, v pa_cvolume cv; pa_log_debug("changing volume of sink input '%s' to 0x%03x", n, r->volume); pa_cvolume_set(&cv, si->sample_spec.channels, r->volume); - pa_sink_input_set_volume(si, &cv); + pa_sink_input_set_volume(si, &cv, TRUE); } } } |