From 638f885e5db2f2ec78f430f5db48dccd5ebea698 Mon Sep 17 00:00:00 2001 From: Warchamp7 Date: Fri, 8 May 2026 19:51:26 -0400 Subject: [PATCH] frontend: Fix thumbnail update rate --- frontend/utility/ThumbnailManager.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/utility/ThumbnailManager.cpp b/frontend/utility/ThumbnailManager.cpp index a76369947..15d39603b 100644 --- a/frontend/utility/ThumbnailManager.cpp +++ b/frontend/utility/ThumbnailManager.cpp @@ -187,9 +187,9 @@ void ThumbnailManager::updateNextItem(size_t cycleDepth) } } - int nextIntervalMS = kMinimumThumbnailUpdateInterval; - if (!priorityQueue.empty() && !quickUpdate) { - nextIntervalMS = kThumbnailUpdateInterval; + int nextIntervalMS = kThumbnailUpdateInterval; + if (!priorityQueue.empty() || quickUpdate) { + nextIntervalMS = kMinimumThumbnailUpdateInterval; } updateTickInterval(nextIntervalMS);