We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f935d5f commit 247272cCopy full SHA for 247272c
Flow.Launcher/ViewModel/MainViewModel.cs
@@ -1437,6 +1437,9 @@ private async Task BuildQueryAsync(IEnumerable<BaseBuiltinShortcutModel> builtIn
1437
{
1438
// Use private field to avoid infinite recursion
1439
_queryText = queryBuilderTmp.ToString();
1440
+ // When executing OnPropertyChanged, QueryTextBox_TextChanged1 and Query will be called
1441
+ // So we need to ignore it so that we will not call Query again
1442
+ _ignoredQueryText = _queryText;
1443
OnPropertyChanged(nameof(QueryText));
1444
}
1445
0 commit comments