From f7eb99d7760f643e120173f9754f31657c4201f5 Mon Sep 17 00:00:00 2001 From: DB p Date: Wed, 19 Oct 2022 14:39:27 +0900 Subject: [PATCH] Add Ignore ColorProfile Code --- Flow.Launcher.Infrastructure/Image/ImageLoader.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Flow.Launcher.Infrastructure/Image/ImageLoader.cs b/Flow.Launcher.Infrastructure/Image/ImageLoader.cs index 8c1d7d74f..11f66c8af 100644 --- a/Flow.Launcher.Infrastructure/Image/ImageLoader.cs +++ b/Flow.Launcher.Infrastructure/Image/ImageLoader.cs @@ -252,6 +252,7 @@ namespace Flow.Launcher.Infrastructure.Image image.BeginInit(); image.CacheOption = BitmapCacheOption.OnLoad; image.UriSource = new Uri(path); + image.CreateOptions = BitmapCreateOptions.IgnoreColorProfile; image.EndInit(); return image; }