From 4429dcfdd3f4c31b45ba6757b2216d349b8242d8 Mon Sep 17 00:00:00 2001 From: Jesus Baylon Date: Mon, 13 Jun 2022 15:45:45 -0700 Subject: [PATCH] Fix Issue #1782 --- src/Calculator/Common/KeyboardShortcutManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Calculator/Common/KeyboardShortcutManager.cs b/src/Calculator/Common/KeyboardShortcutManager.cs index 33d93905..0ea33ab2 100644 --- a/src/Calculator/Common/KeyboardShortcutManager.cs +++ b/src/Calculator/Common/KeyboardShortcutManager.cs @@ -331,7 +331,7 @@ namespace CalculatorApp else { int viewId = Utilities.GetWindowId(); - if (s_fDisableShortcuts.ContainesKey(viewId)) + if (s_fDisableShortcuts.ContainsKey(viewId)) { s_fDisableShortcuts[viewId] = disable; }