mirror of
https://github.com/lubosz/overte.git
synced 2025-04-23 20:34:07 +02:00
make sure AudioInjectorManager process is on AI thread
This commit is contained in:
parent
80115d38e9
commit
4fa934dccf
1 changed files with 1 additions and 1 deletions
|
@ -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();
|
||||
|
|
Loading…
Reference in a new issue