From 41a939f343766ba33db1c989f7df094ff699a4df Mon Sep 17 00:00:00 2001 From: Stenzek Date: Thu, 30 Apr 2026 23:32:45 +1000 Subject: [PATCH] Qt: Fix resize-loading case for getCoverForEntry() --- src/duckstation-qt/gamelistwidget.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/duckstation-qt/gamelistwidget.cpp b/src/duckstation-qt/gamelistwidget.cpp index 65cb8537f..0eb4194e8 100644 --- a/src/duckstation-qt/gamelistwidget.cpp +++ b/src/duckstation-qt/gamelistwidget.cpp @@ -621,7 +621,7 @@ const QPixmap& GameListModel::getCoverForEntry(const GameList::Entry* ge) const // We insert the placeholder into the cache, so that we don't repeatedly queue loading jobs for this game. const_cast(this)->loadOrGenerateCover(ge); - if (pm && !pm->is_loading) + if (pm) { // Use a fast resize so we don't block the main thread, it'll get fixed up soon. // But don't try to resize loading pixmaps.