Commit d3c5ae23 authored by Don Gagne's avatar Don Gagne

Merge pull request #1913 from DonLakeFlyer/MissionEditorMobile

Use new Mission Editor on mobile builds
parents 72b8d9f9 207b2a5c
...@@ -424,7 +424,12 @@ bool QGCApplication::_initForNormalAppBoot(void) ...@@ -424,7 +424,12 @@ bool QGCApplication::_initForNormalAppBoot(void)
_loadCurrentStyle(); _loadCurrentStyle();
// Temp hack for new mission editor // Temp hack for new mission editor
#ifdef __mobile__
// Mobile builds always use new Mission Editor
_useNewMissionEditor = true;
#else
_useNewMissionEditor = settings.value("UseNewMissionEditor", false).toBool(); _useNewMissionEditor = settings.value("UseNewMissionEditor", false).toBool();
#endif
// Show splash screen // Show splash screen
QPixmap splashImage(":/res/SplashScreen"); QPixmap splashImage(":/res/SplashScreen");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment