mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-14 13:27:45 -07:00
MainWindow: Check for batch mode before show().
This commit is contained in:
parent
46a89936ae
commit
fa00728d3e
@ -239,7 +239,8 @@ MainWindow::MainWindow(std::unique_ptr<BootParameters> boot_parameters,
|
||||
QSettings& settings = Settings::GetQSettings();
|
||||
restoreState(settings.value(QStringLiteral("mainwindow/state")).toByteArray());
|
||||
restoreGeometry(settings.value(QStringLiteral("mainwindow/geometry")).toByteArray());
|
||||
show();
|
||||
if (!Settings::Instance().IsBatchModeEnabled())
|
||||
show();
|
||||
|
||||
InitControllers();
|
||||
ConnectHotkeys();
|
||||
|
Loading…
Reference in New Issue
Block a user