Populate new child processes immediately in capture connection panel

This commit is contained in:
baldurk
2020-05-22 22:09:44 +01:00
parent 4f227e25b8
commit 7539533cb9
@@ -1325,6 +1325,10 @@ void LiveCapture::connectionThreadEntry()
QMutexLocker l(&m_ChildrenLock);
m_Children.push_back(c);
}
// force a child update immediately, don't wait for the tick which is intended for decaying
// processes that exit
GUIInvoke::call(this, [this]() { childUpdate(); });
}
}