This commit is contained in:
01Dri 2025-10-11 05:26:28 -03:00
parent a3b7c6808b
commit 2b7c2048ef

View file

@ -30,13 +30,8 @@ namespace Flow.Launcher.Storage
public List<HistoryItem> GetHistoryItems(Settings settings)
{
if (settings.ShowHistoryOnHomePage)
{
if (settings.ShowHistoryQueryResultsForHomePage) return QueryHistoryItems.PopulateActions(true);
return LastOpenedHistoryItems.PopulateActions(false);
}
return new List<HistoryItem>();
if (settings.ShowHistoryQueryResultsForHomePage) return QueryHistoryItems.PopulateActions(true);
return LastOpenedHistoryItems.PopulateActions(false);
}
public void PopulateHistoryFromLegacyHistory()