We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2608d96 + f20c721 commit 6617d03Copy full SHA for 6617d03
Flow.Launcher.Infrastructure/Image/ImageCache.cs
@@ -65,14 +65,8 @@ public ImageSource this[string path]
65
if (Data.Count > permissibleFactor * MaxCached)
66
{
67
// To delete the images from the data dictionary based on the resizing of the Usage Dictionary.
68
-
69
foreach (var key in Data.OrderBy(x => x.Value.usage).Take(Data.Count - MaxCached).Select(x => x.Key))
70
- {
71
- if (!(key.Equals(Constant.ErrorIcon) || key.Equals(Constant.DefaultIcon)))
72
73
- Data.TryRemove(key, out _);
74
- }
75
+ Data.TryRemove(key, out _);
76
}
77
78
0 commit comments