From 3085799c3c3650494be4dad278f5969b2f495d7f Mon Sep 17 00:00:00 2001 From: bao-qian Date: Wed, 4 Nov 2015 17:21:45 +0000 Subject: [PATCH] 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 ee3044e4bc..5ba8a6f20c 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(); }