summaryrefslogtreecommitdiffstats
path: root/src/mixer/playermanager.cpp
diff options
context:
space:
mode:
authorDaniel Schürmann <daschuer@mixxx.org>2020-03-18 01:15:21 +0100
committerDaniel Schürmann <daschuer@mixxx.org>2020-03-18 01:15:21 +0100
commit292e57aee9508bc1b1667153326ae58c3419886d (patch)
tree78ea8d0b21a2c87d4f0d4e4c21c60da1ebfc017d /src/mixer/playermanager.cpp
parent25406396eee368acb84f9b3b8e3bd8ed0d96a04e (diff)
parent7ece3ef9525a0957178d04b3923964d41c0051f6 (diff)
Merge remote-tracking branch 'upstream/master' into lp1747212
Diffstat (limited to 'src/mixer/playermanager.cpp')
-rw-r--r--src/mixer/playermanager.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/mixer/playermanager.cpp b/src/mixer/playermanager.cpp
index 19f78464ae..727faa1899 100644
--- a/src/mixer/playermanager.cpp
+++ b/src/mixer/playermanager.cpp
@@ -370,8 +370,10 @@ void PlayerManager::addDeckInner() {
Deck* pDeck = new Deck(this, m_pConfig, m_pEngine, m_pEffectsManager,
m_pVisualsManager, orientation, group);
- connect(pDeck, SIGNAL(noPassthroughInputConfigured()),
- this, SIGNAL(noDeckPassthroughInputConfigured()));
+ connect(pDeck->getEngineDeck(),
+ &EngineDeck::noPassthroughInputConfigured,
+ this,
+ &PlayerManager::noDeckPassthroughInputConfigured);
connect(pDeck, SIGNAL(noVinylControlInputConfigured()),
this, SIGNAL(noVinylControlInputConfigured()));