mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Change related setting names
This commit is contained in:
parent
54994ddb7b
commit
e9ef26a8dd
2 changed files with 5 additions and 5 deletions
|
|
@ -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;
|
||||
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue