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

Merged in paul_jewell/librepilot/LP-58-splash-screen-doesnt-display (pull request #4)

LP-58 - Added processEvents() to display splashscreen promptly
This commit is contained in:
James Duley 2015-07-30 21:36:54 +01:00
commit 321c60b34c

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();
}