From 2f3efa3e464eb0c5f0c42bbf2b5d61989bac97eb Mon Sep 17 00:00:00 2001 From: Mike Griese Date: Thu, 6 Feb 2025 05:39:57 -0600 Subject: [PATCH] Change the default hotkey to Win+alt+space (#405) Title This is just a much simpler keybind. It harkens the mind to `alt+space`, without actually stealing that keybinding. I recommend `ctrl+alt+space` for the dev version (though, I'm not setting that for you) --- .../cmdpal/Microsoft.CmdPal.UI.ViewModels/SettingsModel.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/cmdpal/Microsoft.CmdPal.UI.ViewModels/SettingsModel.cs b/src/modules/cmdpal/Microsoft.CmdPal.UI.ViewModels/SettingsModel.cs index d3b42f7403..b094588703 100644 --- a/src/modules/cmdpal/Microsoft.CmdPal.UI.ViewModels/SettingsModel.cs +++ b/src/modules/cmdpal/Microsoft.CmdPal.UI.ViewModels/SettingsModel.cs @@ -22,7 +22,7 @@ public partial class SettingsModel : ObservableObject /////////////////////////////////////////////////////////////////////////// // SETTINGS HERE - public HotkeySettings? Hotkey { get; set; } = new HotkeySettings(true, true, false, false, 0xBE); + public HotkeySettings? Hotkey { get; set; } = new HotkeySettings(true, false, true, false, 0x20); // win+alt+space public bool ShowAppDetails { get; set; }