mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
remove duplicate history item sort call
This commit is contained in:
parent
25aa5bf2af
commit
0f269455b1
1 changed files with 1 additions and 1 deletions
|
|
@ -1326,7 +1326,7 @@ namespace Flow.Launcher.ViewModel
|
|||
.Select(g => g.First());
|
||||
}
|
||||
|
||||
foreach (var item in historyItems.OrderByDescending(h => h.ExecutedDateTime))
|
||||
foreach (var item in historyItems)
|
||||
{
|
||||
Result result = null;
|
||||
var glyph = item.Glyph is null && !string.IsNullOrEmpty(item.IcoPath) // Some plugins won't have Glyph, then prefer IcoPath
|
||||
|
|
|
|||
Loading…
Reference in a new issue