mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Fix #357
Fix bug introduced since a5abe9234faafcd170f9468a70f42bf60eda0f0d
This commit is contained in:
parent
3d9b9af55e
commit
3085799c3c
1 changed files with 1 additions and 1 deletions
|
|
@ -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();
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue