From d00b4efdeaf30f2b096c341d5ebd215e26dc1561 Mon Sep 17 00:00:00 2001 From: Fredrik Arvidsson Date: Wed, 23 Jan 2013 07:35:40 +0100 Subject: [PATCH] OP-786 Changed the delay before closing the splash screen to 3 seconds. --- ground/openpilotgcs/src/app/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ground/openpilotgcs/src/app/main.cpp b/ground/openpilotgcs/src/app/main.cpp index 63dd5c510..8ab2bef05 100644 --- a/ground/openpilotgcs/src/app/main.cpp +++ b/ground/openpilotgcs/src/app/main.cpp @@ -389,9 +389,9 @@ int main(int argc, char **argv) // Do this after the event loop has started QTimer::singleShot(100, &pluginManager, SLOT(startTests())); - //Close splashscreen after 5 seconds - QTimer::singleShot(5 * 1000, &splash, SLOT(close())); + //Update message and postpone closing of splashscreen 3 seconds splash.showProgressMessage(QObject::tr("Application started.")); + QTimer::singleShot(3 * 1000, &splash, SLOT(close())); return app.exec(); }