summaryrefslogtreecommitdiff
path: root/libs/ardour/route.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libs/ardour/route.cc')
-rw-r--r--libs/ardour/route.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/libs/ardour/route.cc b/libs/ardour/route.cc
index 70a5d586a0..15b148ffb3 100644
--- a/libs/ardour/route.cc
+++ b/libs/ardour/route.cc
@@ -627,7 +627,9 @@ Route::process_output_buffers (vector<Sample*>& bufs, uint32_t nbufs,
} else {
- if (_session.transport_speed() > 1.5f || _session.transport_speed() < -1.5f) {
+ if ((_session.transport_speed() > 1.5f ||
+ _session.transport_speed() < -1.5f) &&
+ Config->get_quieten_at_speed()) {
pan (bufs, nbufs, nframes, offset, speed_quietning);
} else {
// cerr << _name << " panner state = " << _panner->automation_state() << endl;