From 59e637198777ea34ec3bc3d8668d1b94fc3f3f71 Mon Sep 17 00:00:00 2001 From: Jeremy Date: Wed, 5 Aug 2026 21:56:55 +1000 Subject: [PATCH] fix show history result start up --- Flow.Launcher/MainWindow.xaml.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Flow.Launcher/MainWindow.xaml.cs b/Flow.Launcher/MainWindow.xaml.cs index 1d71e88d940..3168d8d4390 100644 --- a/Flow.Launcher/MainWindow.xaml.cs +++ b/Flow.Launcher/MainWindow.xaml.cs @@ -349,7 +349,7 @@ private void OnLoaded(object sender, RoutedEventArgs e) .AddValueChanged(History, (s, e) => UpdateClockPanelVisibility()); // Initialize query state - if (_settings.ShowHomePage && string.IsNullOrEmpty(_viewModel.QueryText)) + if ((_settings.ShowHomePage || _settings.ShowHistoryResultsForHomePage) && string.IsNullOrEmpty(_viewModel.QueryText)) { _viewModel.QueryResults(); }