From 3dcf22ec4510126d361800879c4c03e9f690b263 Mon Sep 17 00:00:00 2001 From: Jack251970 <1160210343@qq.com> Date: Thu, 10 Jul 2025 22:46:18 +0800 Subject: [PATCH] Use sorted info --- Flow.Launcher/SettingPages/Views/SettingsPaneHotkey.xaml.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Flow.Launcher/SettingPages/Views/SettingsPaneHotkey.xaml.cs b/Flow.Launcher/SettingPages/Views/SettingsPaneHotkey.xaml.cs index a93a77716..f3b4564da 100644 --- a/Flow.Launcher/SettingPages/Views/SettingsPaneHotkey.xaml.cs +++ b/Flow.Launcher/SettingPages/Views/SettingsPaneHotkey.xaml.cs @@ -61,7 +61,7 @@ public partial class SettingsPaneHotkey }; var sortedHotkeyInfo = hotkeyInfo.OrderBy(h => h.Id).ToList(); - foreach (var hotkey in hotkeyInfo) + foreach (var hotkey in sortedHotkeyInfo) { // Skip invisible hotkeys if (!hotkey.Visible) continue;