From 9ab3f2e4bcf7ed576528940e443a6d9ec84c6b70 Mon Sep 17 00:00:00 2001 From: Paddy Xu Date: Sun, 18 Oct 2020 13:53:24 +0200 Subject: [PATCH] Fix #760, support CR3 --- .../QuickLook.Plugin.ImageViewer/Plugin.cs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/QuickLook.Plugin/QuickLook.Plugin.ImageViewer/Plugin.cs b/QuickLook.Plugin/QuickLook.Plugin.ImageViewer/Plugin.cs index 45f0baa..a653a61 100644 --- a/QuickLook.Plugin/QuickLook.Plugin.ImageViewer/Plugin.cs +++ b/QuickLook.Plugin/QuickLook.Plugin.ImageViewer/Plugin.cs @@ -29,11 +29,11 @@ namespace QuickLook.Plugin.ImageViewer { private static readonly HashSet Formats = new HashSet(new[] { - ".apng", ".ari", ".arw", ".avif", ".bay", ".bmp", ".cap", ".cr2", ".crw", ".dcr", ".dcs", ".dng", ".drf", - ".eip", ".emf", ".erf", ".exr", ".fff", ".gif", ".hdr", ".heic", ".heif", ".ico", ".icon", ".iiq", ".jfif", - ".jpeg", ".jpg", ".k25", ".kdc", ".mdc", ".mef", ".mos", ".mrw", ".nef", ".nrw", ".obm", ".orf", ".pbm", - ".pef", ".pgm", ".png", ".pnm", ".ppm", ".psd", ".ptx", ".pxn", ".r3d", ".raf", ".raw", ".rw2", ".rwl", - ".rwz", ".sr2", ".srf", ".srw", ".svg", ".tga", ".tif", ".tiff", ".wdp", ".webp", ".wmf", ".x3f" + ".apng", ".ari", ".arw", ".avif", ".bay", ".bmp", ".cap", ".cr2", ".cr3", ".crw", ".dcr", ".dcs", ".dng", + ".drf", ".eip", ".emf", ".erf", ".exr", ".fff", ".gif", ".hdr", ".heic", ".heif", ".ico", ".icon", ".iiq", + ".jfif", ".jpeg", ".jpg", ".k25", ".kdc", ".mdc", ".mef", ".mos", ".mrw", ".nef", ".nrw", ".obm", ".orf", + ".pbm", ".pef", ".pgm", ".png", ".pnm", ".ppm", ".psd", ".ptx", ".pxn", ".r3d", ".raf", ".raw", ".rw2", + ".rwl", ".rwz", ".sr2", ".srf", ".srw", ".svg", ".tga", ".tif", ".tiff", ".wdp", ".webp", ".wmf", ".x3f" }); private ImagePanel _ip; @@ -95,4 +95,4 @@ namespace QuickLook.Plugin.ImageViewer _ip = null; } } -} \ No newline at end of file +}