diff --git a/tagstudio/src/qt/ts_qt.py b/tagstudio/src/qt/ts_qt.py index 21f79d1c..0dee6580 100644 --- a/tagstudio/src/qt/ts_qt.py +++ b/tagstudio/src/qt/ts_qt.py @@ -293,13 +293,15 @@ class QtDriver(QObject): splash_pixmap = QPixmap(":/images/splash.png") splash_pixmap.setDevicePixelRatio(self.main_window.devicePixelRatio()) splash_pixmap = splash_pixmap.scaledToWidth( - min( - ( - QGuiApplication.primaryScreen().geometry().width() - * self.main_window.devicePixelRatio() + math.floor( + min( + ( + QGuiApplication.primaryScreen().geometry().width() + * self.main_window.devicePixelRatio() + ) + / 4, + splash_pixmap.width(), ) - // 4, - splash_pixmap.width(), ), Qt.TransformationMode.SmoothTransformation, )