summaryrefslogtreecommitdiffstats
path: root/src/effects/effectchainslot.cpp
diff options
context:
space:
mode:
authorBe <be@mixxx.org>2020-09-01 11:36:34 -0500
committerBe <be@mixxx.org>2020-09-01 11:36:34 -0500
commitdd3000c89378d955110ae3ec1bbf393c0565276b (patch)
treee0301e8f44affed7c35efdf1f217b22867da178e /src/effects/effectchainslot.cpp
parent61b65d8084bc268eaa5a9e7d2026672b17a9b1e9 (diff)
EffectChainSlot: make default parameter explicit
Diffstat (limited to 'src/effects/effectchainslot.cpp')
-rw-r--r--src/effects/effectchainslot.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/effects/effectchainslot.cpp b/src/effects/effectchainslot.cpp
index 9dda5e86aa..5dacd16181 100644
--- a/src/effects/effectchainslot.cpp
+++ b/src/effects/effectchainslot.cpp
@@ -74,7 +74,7 @@ EffectChainSlot::EffectChainSlot(const QString& group,
connect(m_pControlChainSuperParameter.get(),
&ControlObject::valueChanged,
this,
- [=](double value) { slotControlChainSuperParameter(value); });
+ [=](double value) { slotControlChainSuperParameter(value, false); });
m_pControlChainSuperParameter->set(0.0);
m_pControlChainSuperParameter->setDefaultValue(0.0);