This commit is contained in:
01Dri 2025-10-11 03:43:06 -03:00
parent d7579cce9e
commit 690d33ece3
2 changed files with 2 additions and 2 deletions

View file

@ -39,7 +39,7 @@ namespace Flow.Launcher.Storage
return new List<HistoryItem>();
}
public void PopulateHistoryWithLegacyHistory()
public void PopulateHistoryFromLegacyHistory()
{
foreach (var item in Items)
{

View file

@ -153,7 +153,7 @@ namespace Flow.Launcher.ViewModel
_topMostRecord = new FlowLauncherJsonStorageTopMostRecord();
_history = _historyStorage.Load();
_history.PopulateHistoryWithLegacyHistory();
_history.PopulateHistoryFromLegacyHistory();
_userSelectedRecord = _userSelectedRecordStorage.Load();
ContextMenu = new ResultsViewModel(Settings, this)