mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Fix MaxCahced count
This commit is contained in:
parent
3574dba046
commit
9ff81adcc3
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue