ImageViewer: add .jfif format support (#856)

This commit is contained in:
Gary Wang
2021-03-03 20:09:09 +08:00
committed by GitHub
parent 7377b4f2ab
commit 9f426326ba

View File

@@ -50,7 +50,7 @@ namespace QuickLook.Plugin.ImageViewer
new KeyValuePair<string[], Type>(new[] {".gif"},
typeof(GifProvider)));
AnimatedImage.AnimatedImage.Providers.Add(
new KeyValuePair<string[], Type>(new[] {".bmp", ".jpg", ".jpeg", ".tif", ".tiff"},
new KeyValuePair<string[], Type>(new[] {".bmp", ".jpg", ".jpeg", ".jfif", ".tif", ".tiff"},
typeof(NativeProvider)));
AnimatedImage.AnimatedImage.Providers.Add(
new KeyValuePair<string[], Type>(new[] {"*"},