From 02d6b22b2544fd651f9816c20dda590ae77571f5 Mon Sep 17 00:00:00 2001 From: Travis Abendshien Date: Mon, 13 May 2024 12:13:06 -0700 Subject: [PATCH] Splash screen now stays on top of other windows --- tagstudio/src/qt/ts_qt.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tagstudio/src/qt/ts_qt.py b/tagstudio/src/qt/ts_qt.py index 4a5c1af5..8e2dda26 100644 --- a/tagstudio/src/qt/ts_qt.py +++ b/tagstudio/src/qt/ts_qt.py @@ -261,7 +261,7 @@ class QtDriver(QObject): splash_pixmap = QPixmap(":/images/splash.png") splash_pixmap.setDevicePixelRatio(self.main_window.devicePixelRatio()) - self.splash = QSplashScreen(splash_pixmap) + self.splash = QSplashScreen(splash_pixmap, Qt.WindowStaysOnTopHint) # self.splash.setAttribute(Qt.WidgetAttribute.WA_TranslucentBackground) self.splash.show()