mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
Qt: Fix render widget not being on top when using -n / -e
This commit is contained in:
@ -110,7 +110,7 @@ MainWindow::MainWindow(std::unique_ptr<BootParameters> boot_parameters) : QMainW
|
||||
NetPlayInit();
|
||||
|
||||
if (boot_parameters)
|
||||
StartGame(std::move(boot_parameters));
|
||||
m_pending_boot = std::move(boot_parameters);
|
||||
|
||||
QSettings& settings = Settings::GetQSettings();
|
||||
|
||||
@ -1351,3 +1351,15 @@ void MainWindow::OnUpdateProgressDialog(QString title, int progress, int total)
|
||||
m_progress_dialog = nullptr;
|
||||
}
|
||||
}
|
||||
|
||||
void MainWindow::Show()
|
||||
{
|
||||
QWidget::show();
|
||||
|
||||
// If the booting of a game was requested on start up, do that now
|
||||
if (m_pending_boot != nullptr)
|
||||
{
|
||||
StartGame(std::move(m_pending_boot));
|
||||
m_pending_boot.reset();
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user