summaryrefslogtreecommitdiffstats
path: root/src/modules/module-match.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2009-01-27 23:35:55 +0100
committerLennart Poettering <lennart@poettering.net>2009-01-27 23:40:03 +0100
commit64b05435889678dcb154c460063395855659485e (patch)
tree880071bbd1b81710c34ff2dec8f8119ea29aac61 /src/modules/module-match.c
parentee17772cea3471b0e44fd1598f7ababa4100db0c (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.c2
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);
}
}
}