diff --git a/ankiqt/__init__.py b/ankiqt/__init__.py index d1add6833..d1add585d 100644 --- a/ankiqt/__init__.py +++ b/ankiqt/__init__.py @@ -36,10 +36,15 @@ class SplashScreen(object): self.splash = QSplashScreen(self.pixmap) self.prog = QProgressBar(self.splash) self.prog.setMaximum(max) + if QApplication.instance().style().objectName() != "plastique": + self.prog.setStyle(QStyleFactory.create("plastique")) + self.prog.setStyleSheet("""* { +color: #ffffff; +background-color: #0d3048;}""") x = 8 if sys.platform.startswith("win32"): x += 1 - self.prog.setGeometry(self.splash.width()/10, 8*self.splash.height()/10, + self.prog.setGeometry(self.splash.width()/10, 8.85*self.splash.height()/10, x*self.splash.width()/10, self.splash.height()/10) self.splash.show() self.val = 1 diff --git a/icons/anki-logo.png b/icons/anki-logo.png index 9151bbdd9..8592de563 100644 Binary files a/icons/anki-logo.png and b/icons/anki-logo.png differ