From af5ff430c47614824e84cc0ed5690bd34536aa90 Mon Sep 17 00:00:00 2001 From: Jeremy Wu Date: Sun, 11 May 2025 18:16:29 +1000 Subject: [PATCH] update comment --- Flow.Launcher/ViewModel/MainViewModel.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Flow.Launcher/ViewModel/MainViewModel.cs b/Flow.Launcher/ViewModel/MainViewModel.cs index df4144510..52581ea1d 100644 --- a/Flow.Launcher/ViewModel/MainViewModel.cs +++ b/Flow.Launcher/ViewModel/MainViewModel.cs @@ -520,7 +520,7 @@ namespace Flow.Launcher.ViewModel { if (QueryResultsSelected() // Results selected && string.IsNullOrEmpty(QueryText) // No input - && Results.Visibility != Visibility.Visible // Results closed which means no items in Results + && Results.Visibility != Visibility.Visible // No items in result list, e.g. when home page is off and no query text is entered, therefore the view is collapsed. && _history.Items.Count > 0) // Have history items { lastHistoryIndex = 1;