From c8bf63c26ac5077730693c88abf22c70931b0030 Mon Sep 17 00:00:00 2001 From: blacksun Date: Mon, 6 Jun 2016 19:15:31 +0000 Subject: [PATCH] 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 --- sources/qetapp.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources/qetapp.cpp b/sources/qetapp.cpp index d28eb8496..fc2ec490a 100644 --- a/sources/qetapp.cpp +++ b/sources/qetapp.cpp @@ -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")); }