Skip to content

Commit 4716605

Browse files
committed
Add quick switch hotkeys in model
1 parent b259362 commit 4716605

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

Flow.Launcher.Infrastructure/UserSettings/Settings.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -488,6 +488,8 @@ public List<RegisteredHotkeyData> RegisteredHotkeys
488488
list.Add(new(CycleHistoryUpHotkey, "CycleHistoryUpHotkey", () => CycleHistoryUpHotkey = ""));
489489
if (!string.IsNullOrEmpty(CycleHistoryDownHotkey))
490490
list.Add(new(CycleHistoryDownHotkey, "CycleHistoryDownHotkey", () => CycleHistoryDownHotkey = ""));
491+
if (!string.IsNullOrEmpty(QuickSwitchHotkey))
492+
list.Add(new(QuickSwitchHotkey, "quickSwitchHotkey", () => QuickSwitchHotkey = ""));
491493

492494
// Custom Query Hotkeys
493495
foreach (var customPluginHotkey in CustomPluginHotkeys)

0 commit comments

Comments
 (0)