Remove the flag Qt::WindowStaysOnTopHint of the splash screen

git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4544 bfdf4180-ca20-0410-9c96-a3a8aa849046
This commit is contained in:
blacksun
2016-06-06 19:15:31 +00:00
parent 646f9e7dc6
commit c8bf63c26a

View File

@@ -1316,7 +1316,7 @@ void QETApp::parseArguments() {
*/
void QETApp::initSplashScreen() {
if (non_interactive_execution_) return;
splash_screen_ = new QSplashScreen(QPixmap(":/ico/splash.png"), Qt::WindowStaysOnTopHint);
splash_screen_ = new QSplashScreen(QPixmap(":/ico/splash.png"));
splash_screen_ -> show();
setSplashScreenStep(tr("Chargement...", "splash screen caption"));
}