mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Sort hotkey info list
This commit is contained in:
parent
8abd5318b3
commit
4d77bad83d
1 changed files with 4 additions and 1 deletions
|
|
@ -1,4 +1,5 @@
|
|||
using System.Windows;
|
||||
using System.Linq;
|
||||
using System.Windows;
|
||||
using System.Windows.Controls;
|
||||
using System.Windows.Navigation;
|
||||
using CommunityToolkit.Mvvm.DependencyInjection;
|
||||
|
|
@ -50,6 +51,8 @@ public partial class SettingsPaneHotkey
|
|||
{
|
||||
Orientation = Orientation.Vertical
|
||||
};
|
||||
|
||||
var sortedHotkeyInfo = hotkeyInfo.OrderBy(h => h.Id).ToList();
|
||||
foreach (var hotkey in hotkeyInfo)
|
||||
{
|
||||
var card = new Card()
|
||||
|
|
|
|||
Loading…
Reference in a new issue