From 09eb89164708667e8efedf26dcb862a0bf387c58 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Thu, 25 Dec 2025 14:49:50 +0530 Subject: [PATCH] Fix loading of default cover image --- src/calibre/gui2/library/bookshelf_view.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/gui2/library/bookshelf_view.py b/src/calibre/gui2/library/bookshelf_view.py index 25f17b010a..016c9fe235 100644 --- a/src/calibre/gui2/library/bookshelf_view.py +++ b/src/calibre/gui2/library/bookshelf_view.py @@ -570,7 +570,7 @@ class PixmapWithDominantColor(QPixmap): @lru_cache(maxsize=2) def default_cover_pixmap(width: int, height: int) -> PixmapWithDominantColor: - i = QImage(I('default_cover_image.png')) + i = QImage(I('default_cover.png')) _, i = resize_to_fit(i, width, height) return PixmapWithDominantColor.fromImage(ImageWithDominantColor(i))