diff --git a/src/calibre/gui2/splash_screen.py b/src/calibre/gui2/splash_screen.py index 04f6f12c93..c3d8b0cbe7 100644 --- a/src/calibre/gui2/splash_screen.py +++ b/src/calibre/gui2/splash_screen.py @@ -35,7 +35,7 @@ class SplashScreen(QSplashScreen): f.setPixelSize(self.LOGO_SIZE) f.setItalic(True), f.setBold(True) f = QFontMetrics(f) - self.num_ch = str(numeric_version[0]) + self.num_ch = str(max(3, numeric_version[0])) self.footer_font = f = QFont() f.setPointSize(self.FOOTER_SIZE) f.setItalic(True)