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:
Stenzek 2019-02-02 13:36:44 +10:00
parent 363ce67459
commit 31a5dd15a9

View file

@ -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()