From 87d15a4a646ca709b3e4adc41801ba386b351e04 Mon Sep 17 00:00:00 2001 From: Fredrik Arvidsson Date: Thu, 24 Jan 2013 15:54:25 +0100 Subject: [PATCH] OP-786 Changed delay before splash screen is closed to 1500 ms. Rebased on next. --- ground/openpilotgcs/src/app/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ground/openpilotgcs/src/app/main.cpp b/ground/openpilotgcs/src/app/main.cpp index 8ab2bef05..085c3d74b 100644 --- a/ground/openpilotgcs/src/app/main.cpp +++ b/ground/openpilotgcs/src/app/main.cpp @@ -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(); }