mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Skip invisible hotkeys
This commit is contained in:
parent
96b5eb3df9
commit
ddc890eb15
1 changed files with 3 additions and 0 deletions
|
|
@ -65,6 +65,9 @@ public partial class SettingsPaneHotkey
|
|||
var sortedHotkeyInfo = hotkeyInfo.OrderBy(h => h.Id).ToList();
|
||||
foreach (var hotkey in hotkeyInfo)
|
||||
{
|
||||
// Skip invisible hotkeys
|
||||
if (!hotkey.Visible) continue;
|
||||
|
||||
var card = new Card()
|
||||
{
|
||||
Title = hotkey.Name,
|
||||
|
|
|
|||
Loading…
Reference in a new issue