1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2025-01-29 14:52:12 +01:00

OP-786 Changed delay before splash screen is closed to 1500 ms. Rebased on next.

This commit is contained in:
Fredrik Arvidsson 2013-01-24 15:54:25 +01:00
parent d00b4efdea
commit 87d15a4a64

View File

@ -391,7 +391,7 @@ int main(int argc, char **argv)
//Update message and postpone closing of splashscreen 3 seconds
splash.showProgressMessage(QObject::tr("Application started."));
QTimer::singleShot(3 * 1000, &splash, SLOT(close()));
QTimer::singleShot(1500, &splash, SLOT(close()));
return app.exec();
}