From 0f269455b1c9fac303d11bed238bd1ec14e92d44 Mon Sep 17 00:00:00 2001 From: Jeremy Date: Tue, 21 Oct 2025 22:18:29 +1100 Subject: [PATCH] remove duplicate history item sort call --- Flow.Launcher/ViewModel/MainViewModel.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Flow.Launcher/ViewModel/MainViewModel.cs b/Flow.Launcher/ViewModel/MainViewModel.cs index eeb15d74e..08d4e0d03 100644 --- a/Flow.Launcher/ViewModel/MainViewModel.cs +++ b/Flow.Launcher/ViewModel/MainViewModel.cs @@ -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