From 51a46155d7e5a38b74e61add59479dd412ed953e Mon Sep 17 00:00:00 2001 From: ema Date: Sun, 25 May 2025 01:59:31 +0800 Subject: [PATCH] Fix unsupported CLSID was not shown --- QuickLook.Plugin/QuickLook.Plugin.CLSIDViewer/Plugin.cs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/QuickLook.Plugin/QuickLook.Plugin.CLSIDViewer/Plugin.cs b/QuickLook.Plugin/QuickLook.Plugin.CLSIDViewer/Plugin.cs index e0bd0cb..5958344 100644 --- a/QuickLook.Plugin/QuickLook.Plugin.CLSIDViewer/Plugin.cs +++ b/QuickLook.Plugin/QuickLook.Plugin.CLSIDViewer/Plugin.cs @@ -25,7 +25,6 @@ namespace QuickLook.Plugin.CLSIDViewer; public class Plugin : IViewer { private CLSIDInfoPanel _ip; - private string _path; public int Priority => -1; @@ -57,13 +56,12 @@ public class Plugin : IViewer public void View(string path, ContextObject context) { - _path = path; _ip = new CLSIDInfoPanel(); _ip.DisplayInfo(path, context); context.ViewerContent = _ip; context.Title = $"{CLSIDRegister.GetName(path) ?? path}"; - context.IsBusy = true; + context.IsBusy = false; } public void Cleanup()