From 9ed8ffcd23ed7d6ce9e59a2a81cd56fe531347ff Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 16 Jun 2017 08:48:10 +0530 Subject: [PATCH] Fix message being rendered twice in new splash screen --- src/calibre/gui2/splash_screen.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/calibre/gui2/splash_screen.py b/src/calibre/gui2/splash_screen.py index a907bc03ac..5088d42df8 100644 --- a/src/calibre/gui2/splash_screen.py +++ b/src/calibre/gui2/splash_screen.py @@ -52,7 +52,6 @@ class SplashScreen(QSplashScreen): self.setWindowTitle(__appname__) def drawContents(self, painter): - QSplashScreen.drawContents(self, painter) self.drawn_once = True painter.save() painter.setRenderHint(painter.TextAntialiasing, True)