1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-29 21:45:32 +00:00

[Browser] Start browser without needing to refresh first

This commit is contained in:
David Cernat 2017-05-19 17:34:20 +03:00
parent 50c839d425
commit 10f84c125e

View file

@ -43,14 +43,6 @@ int main(int argc, char *argv[])
QApplication app(argc, argv);
MainWindow d;
if (d.refresh())
{
d.show();
return app.exec();
}
else
{
app.exit();
return 0;
}
d.show();
return app.exec();
}