Skip to content

Commit 4bb14fd

Browse files
committed
Revert home query default value
1 parent 12a6b6c commit 4bb14fd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Flow.Launcher/ViewModel/MainViewModel.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public partial class MainViewModel : BaseModel, ISavable, IDisposable
3333

3434
private bool _isQueryRunning;
3535
private Query _lastQuery;
36-
private bool _previousIsHomeQuery = true; // Used to determine if the last query was a home query
36+
private bool _previousIsHomeQuery;
3737
private string _queryTextBeforeLeaveResults;
3838
private string _ignoredQueryText; // Used to ignore query text change when switching between context menu and query results
3939

@@ -223,7 +223,7 @@ async Task UpdateActionAsync()
223223
item.ShouldClearExistingResults = shouldClearExistingResults;
224224

225225
queue[item.ID] = item;
226-
}
226+
}
227227
}
228228

229229
UpdateResultView(queue.Values);

0 commit comments

Comments
 (0)