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

Added processEvents() to display splashscreen promptly

This commit is contained in:
Paul Jewell 2015-07-26 22:51:26 +01:00
parent ac877a036e
commit 1f1a22d8be

View File

@ -28,6 +28,7 @@
#include "gcssplashscreen.h"
#include "version_info/version_info.h"
#include <QDebug>
#include <QApplication>
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();
}