Change related setting names

This commit is contained in:
Jack251970 2025-05-03 18:17:00 +08:00
parent 54994ddb7b
commit e9ef26a8dd
2 changed files with 5 additions and 5 deletions

View file

@ -159,9 +159,9 @@ namespace Flow.Launcher.Infrastructure.UserSettings
}
}
public bool ShowHomeQuery { get; set; } = true;
public bool ShowHistoryRecordsForHomeQuery { get; set; } = false;
public int HistoryRecordsCountForHomeQuery { get; set; } = 5;
public bool ShowHomePage { get; set; } = true;
public bool ShowHistoryResultsForHomePage { get; set; } = false;
public int MaxHistoryResultsToShowForHomePage { get; set; } = 5;
public int CustomExplorerIndex { get; set; } = 0;

View file

@ -1076,7 +1076,7 @@ namespace Flow.Launcher.ViewModel
public void InitializeQuery()
{
if (Settings.ShowHomeQuery)
if (Settings.ShowHomePage)
{
_ = QueryResultsAsync(false);
}
@ -1211,7 +1211,7 @@ namespace Flow.Launcher.ViewModel
if (query == null) // shortcut expanded
{
if (Settings.ShowHomeQuery)
if (Settings.ShowHomePage)
{
plugins = PluginManager.ValidPluginsForHomeQuery(query);
}