Fix loading of default cover image

This commit is contained in:
Kovid Goyal 2025-12-25 14:49:50 +05:30
parent 8a01647dba
commit 09eb891647
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -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))