mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Use sorted info
This commit is contained in:
parent
476d846995
commit
3dcf22ec45
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue