From c34b1bc9795ff728af11b9743cafb80db546e4bb Mon Sep 17 00:00:00 2001 From: ema Date: Thu, 15 Jan 2026 11:11:50 +0800 Subject: [PATCH] Set PDF viewer plugin priority to -1 Changed the Priority property of the PDF viewer plugin from 0 to -1, likely to adjust its loading or selection order among other plugins. --- QuickLook.Plugin/QuickLook.Plugin.PDFViewer/Plugin.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/QuickLook.Plugin/QuickLook.Plugin.PDFViewer/Plugin.cs b/QuickLook.Plugin/QuickLook.Plugin.PDFViewer/Plugin.cs index 291b770..54733c2 100644 --- a/QuickLook.Plugin/QuickLook.Plugin.PDFViewer/Plugin.cs +++ b/QuickLook.Plugin/QuickLook.Plugin.PDFViewer/Plugin.cs @@ -34,7 +34,7 @@ public sealed class Plugin : IViewer private PdfViewerControl _pdfControl; private PasswordControl _passwordControl; - public int Priority => 0; + public int Priority => -1; public void Init() {