From 1f1a22d8be49130040c6a9fb1d6efed37eb73d82 Mon Sep 17 00:00:00 2001 From: Paul Jewell Date: Sun, 26 Jul 2015 22:51:26 +0100 Subject: [PATCH] Added processEvents() to display splashscreen promptly --- ground/openpilotgcs/src/app/gcssplashscreen.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ground/openpilotgcs/src/app/gcssplashscreen.cpp b/ground/openpilotgcs/src/app/gcssplashscreen.cpp index 13612ce11..1c7dba610 100644 --- a/ground/openpilotgcs/src/app/gcssplashscreen.cpp +++ b/ground/openpilotgcs/src/app/gcssplashscreen.cpp @@ -28,6 +28,7 @@ #include "gcssplashscreen.h" #include "version_info/version_info.h" #include +#include const QChar CopyrightSymbol(0x00a9); @@ -74,4 +75,5 @@ void GCSSplashScreen::showPluginLoadingProgress(ExtensionSystem::PluginSpec *plu QString message(tr("Loading ") + pluginSpec->name() + " plugin..."); drawMessageText(message); + qApp->processEvents(); }