This commit is contained in:
Ignacio Serantes
2026-04-08 15:47:29 +02:00
parent bff99226b0
commit 07afab6ca3
10 changed files with 336 additions and 113 deletions

View File

@@ -745,9 +745,9 @@ class ThumbnailCache(QObject):
def _get_tier_for_size(self, requested_size):
"""Determines the ideal thumbnail tier based on the requested size."""
if requested_size < 192:
if requested_size <= 128:
return 128
if requested_size < 320:
if requested_size <= 256:
return 256
return 512