1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2025-02-18 08:54:15 +01:00

GCS-Ensure wizard is top window

This commit is contained in:
PT_Dreamer 2012-10-13 18:57:02 +01:00
parent 0559c90689
commit 2b48cf3d90

View File

@ -86,6 +86,7 @@ void SetupWizardPlugin::showSetupWizard()
SetupWizard *m_wiz = new SetupWizard();
connect(m_wiz, SIGNAL(finished(int)), this, SLOT(wizardTerminated()));
m_wiz->setAttribute( Qt::WA_DeleteOnClose, true );
m_wiz->setWindowFlags(m_wiz->windowFlags() | Qt::WindowStaysOnTopHint);
m_wiz->show();
}
}