We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b259362 commit 4716605Copy full SHA for 4716605
Flow.Launcher.Infrastructure/UserSettings/Settings.cs
@@ -488,6 +488,8 @@ public List<RegisteredHotkeyData> RegisteredHotkeys
488
list.Add(new(CycleHistoryUpHotkey, "CycleHistoryUpHotkey", () => CycleHistoryUpHotkey = ""));
489
if (!string.IsNullOrEmpty(CycleHistoryDownHotkey))
490
list.Add(new(CycleHistoryDownHotkey, "CycleHistoryDownHotkey", () => CycleHistoryDownHotkey = ""));
491
+ if (!string.IsNullOrEmpty(QuickSwitchHotkey))
492
+ list.Add(new(QuickSwitchHotkey, "quickSwitchHotkey", () => QuickSwitchHotkey = ""));
493
494
// Custom Query Hotkeys
495
foreach (var customPluginHotkey in CustomPluginHotkeys)
0 commit comments