mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-24 23:11:14 +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();
|
QSettings& settings = Settings::GetQSettings();
|
||||||
restoreState(settings.value(QStringLiteral("mainwindow/state")).toByteArray());
|
restoreState(settings.value(QStringLiteral("mainwindow/state")).toByteArray());
|
||||||
restoreGeometry(settings.value(QStringLiteral("mainwindow/geometry")).toByteArray());
|
restoreGeometry(settings.value(QStringLiteral("mainwindow/geometry")).toByteArray());
|
||||||
show();
|
if (!Settings::Instance().IsBatchModeEnabled())
|
||||||
|
show();
|
||||||
|
|
||||||
InitControllers();
|
InitControllers();
|
||||||
ConnectHotkeys();
|
ConnectHotkeys();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user