make sure AudioInjectorManager process is on AI thread

This commit is contained in:
Stephen Birarda 2015-11-16 18:54:16 -08:00
parent 80115d38e9
commit 4fa934dccf

View file

@ -46,7 +46,7 @@ void AudioInjectorManager::createThread() {
_thread->setObjectName("Audio Injector Thread");
// when the thread is started, have it call our run to handle injection of audio
connect(_thread, &QThread::started, this, &AudioInjectorManager::run);
connect(_thread, &QThread::started, this, &AudioInjectorManager::run, Qt::DirectConnection);
// start the thread
_thread->start();