mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
Qt: Fix "Install WAD" being enabled while emulation is running
This commit is contained in:
@ -249,6 +249,8 @@ void MainWindow::ConnectToolBar()
|
||||
void MainWindow::ConnectGameList()
|
||||
{
|
||||
connect(m_game_list, &GameList::GameSelected, this, &MainWindow::Play);
|
||||
connect(this, &MainWindow::EmulationStarted, m_game_list, &GameList::EmulationStarted);
|
||||
connect(this, &MainWindow::EmulationStopped, m_game_list, &GameList::EmulationStopped);
|
||||
}
|
||||
|
||||
void MainWindow::ConnectRenderWidget()
|
||||
|
Reference in New Issue
Block a user