From 06068eedce7522541ae3f2e0c402828fe19e758a Mon Sep 17 00:00:00 2001 From: Andreas Preikschat Date: Sat, 8 Oct 2011 15:29:35 +0200 Subject: [PATCH] fixed bug 863846 Fixes: https://launchpad.net/bugs/863846 --- openlp/core/ui/splashscreen.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/openlp/core/ui/splashscreen.py b/openlp/core/ui/splashscreen.py index 8b2ba5d95..036daf968 100644 --- a/openlp/core/ui/splashscreen.py +++ b/openlp/core/ui/splashscreen.py @@ -36,8 +36,7 @@ class SplashScreen(QtGui.QSplashScreen): QtCore.SIGNAL(u'close_splash'), self.close) def setupUi(self): - self.setObjectName(u'splash_screen') - self.setWindowFlags(self.windowFlags() | QtCore.Qt.WindowStaysOnTopHint) + self.setObjectName(u'splashScreen') self.setContextMenuPolicy(QtCore.Qt.PreventContextMenu) splash_image = QtGui.QPixmap(u':/graphics/openlp-splash-screen.png') self.setPixmap(splash_image)