summaryrefslogtreecommitdiffstats
path: root/src/effects/effectchainslot.cpp
diff options
context:
space:
mode:
authorBe <be@mixxx.org>2020-04-22 14:55:32 -0500
committerBe <be@mixxx.org>2020-04-22 14:55:32 -0500
commit253cc9db1613348bc68fdf3551e23d9a4d482344 (patch)
tree41773583db34647eaac575fc07b9ea75137fb21d /src/effects/effectchainslot.cpp
parent4b6cb8a01280a5ae733d5826a02e45b8a59b942b (diff)
parent688d20447cb6bc7a328cca211ec4b206448e06f6 (diff)
Merge remote-tracking branch 'upstream/master' into effects_refactoring
Diffstat (limited to 'src/effects/effectchainslot.cpp')
-rw-r--r--src/effects/effectchainslot.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/effects/effectchainslot.cpp b/src/effects/effectchainslot.cpp
index da059e2d0b..691537e197 100644
--- a/src/effects/effectchainslot.cpp
+++ b/src/effects/effectchainslot.cpp
@@ -98,6 +98,10 @@ EffectChainSlot::EffectChainSlot(const QString& group,
ConfigKey(m_group, "show_focus"));
m_pControlChainShowFocus->setButtonMode(ControlPushButton::TOGGLE);
+ m_pControlChainHasControllerFocus = new ControlPushButton(
+ ConfigKey(m_group, "controller_input_active"));
+ m_pControlChainHasControllerFocus->setButtonMode(ControlPushButton::TOGGLE);
+
m_pControlChainShowParameters = new ControlPushButton(
ConfigKey(m_group, "show_parameters"),
true);
@@ -128,6 +132,7 @@ EffectChainSlot::~EffectChainSlot() {
delete m_pControlChainNextPreset;
delete m_pControlChainSelector;
delete m_pControlChainShowFocus;
+ delete m_pControlChainHasControllerFocus;
delete m_pControlChainShowParameters;
delete m_pControlChainFocusedEffect;