mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-09 15:49:25 +01: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…
x
Reference in New Issue
Block a user