From 6cb852077a0475a7255effe8b4e84b33745ffd47 Mon Sep 17 00:00:00 2001 From: Yu Leng <42196638+moooyo@users.noreply.github.com> Date: Fri, 9 May 2025 12:24:53 +0800 Subject: [PATCH] [cmdpal] Disable "ignore shortcut when full screen" by default (#39323) disable by default Co-authored-by: Yu Leng (from Dev Box) --- .../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 ae97849f7a..43a4e99bd8 100644 --- a/src/modules/cmdpal/Microsoft.CmdPal.UI.ViewModels/SettingsModel.cs +++ b/src/modules/cmdpal/Microsoft.CmdPal.UI.ViewModels/SettingsModel.cs @@ -40,7 +40,7 @@ public partial class SettingsModel : ObservableObject public bool ShowSystemTrayIcon { get; set; } = true; - public bool IgnoreShortcutWhenFullscreen { get; set; } = true; + public bool IgnoreShortcutWhenFullscreen { get; set; } public Dictionary ProviderSettings { get; set; } = [];