DolphinQt: Connect Host::RequestStop() to MainWindow::RequestStop()
The fact that this wasn't connected was causing fifoplayer to hang if looping was disabled.
This commit is contained in:
parent
363ce67459
commit
31a5dd15a9
|
@ -578,6 +578,7 @@ void MainWindow::ConnectHost()
|
|||
{
|
||||
connect(Host::GetInstance(), &Host::UpdateProgressDialog, this,
|
||||
&MainWindow::OnUpdateProgressDialog);
|
||||
connect(Host::GetInstance(), &Host::RequestStop, this, &MainWindow::RequestStop);
|
||||
}
|
||||
|
||||
void MainWindow::ConnectStack()
|
||||
|
|
Loading…
Reference in New Issue