Skip to content

Commit 9ff81ad

Browse files
committed
Fix MaxCahced count
1 parent 3574dba commit 9ff81ad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Flow.Launcher.Infrastructure/Image/ImageCache.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ namespace Flow.Launcher.Infrastructure.Image
1111
{
1212
public class ImageCache
1313
{
14-
private const int MaxCached = 10;
14+
private const int MaxCached = 150;
1515

1616
private ConcurrentLfu<(string, bool), ImageSource> CacheManager { get; set; } = new(MaxCached);
1717

0 commit comments

Comments
 (0)