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")) 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(); }