Fix MaxCahced count

This commit is contained in:
DB p 2024-05-30 14:48:56 +09:00
parent 3574dba046
commit 9ff81adcc3

View file

@ -11,7 +11,7 @@ namespace Flow.Launcher.Infrastructure.Image
{
public class ImageCache
{
private const int MaxCached = 10;
private const int MaxCached = 150;
private ConcurrentLfu<(string, bool), ImageSource> CacheManager { get; set; } = new(MaxCached);