From 3d9b9af55ea5f6bd307c535570e7a63695994569 Mon Sep 17 00:00:00 2001 From: bao-qian Date: Wed, 4 Nov 2015 17:07:50 +0000 Subject: [PATCH 1/2] Fix #362 --- Wox.Core/Plugin/PluginManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Wox.Core/Plugin/PluginManager.cs b/Wox.Core/Plugin/PluginManager.cs index 1fb302882..56b8693c6 100644 --- a/Wox.Core/Plugin/PluginManager.cs +++ b/Wox.Core/Plugin/PluginManager.cs @@ -152,7 +152,7 @@ namespace Wox.Core.Plugin { var customizedPluginConfig = UserSettingStorage.Instance. CustomizedPluginConfigs.FirstOrDefault(o => o.ID == plugin.Metadata.ID); - if (customizedPluginConfig != null && customizedPluginConfig.Disabled) return; + if (customizedPluginConfig != null && customizedPluginConfig.Disabled) continue; if (IsInstantQueryPlugin(plugin)) { using (new Timeit($"Plugin {plugin.Metadata.Name} is executing instant search")) From 3085799c3c3650494be4dad278f5969b2f495d7f Mon Sep 17 00:00:00 2001 From: bao-qian Date: Wed, 4 Nov 2015 17:21:45 +0000 Subject: [PATCH 2/2] Fix #357 Fix bug introduced since a5abe9234faafcd170f9468a70f42bf60eda0f0d --- Wox/MainWindow.xaml.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Wox/MainWindow.xaml.cs b/Wox/MainWindow.xaml.cs index ee3044e4b..5ba8a6f20 100644 --- a/Wox/MainWindow.xaml.cs +++ b/Wox/MainWindow.xaml.cs @@ -464,7 +464,7 @@ namespace Wox Query(tbQuery.Text); Dispatcher.DelayInvoke("ShowProgressbar", () => { - if (!queryHasReturn && !string.IsNullOrEmpty(lastQuery)) + if (!queryHasReturn && !string.IsNullOrEmpty(tbQuery.Text) && tbQuery.Text != lastQuery) { StartProgress(); }