From b4a09eea9da95ae942691d08887722d250f93f79 Mon Sep 17 00:00:00 2001 From: Tig Date: Wed, 27 Nov 2024 09:15:16 -0700 Subject: [PATCH] Initial commit --- Terminal.Gui/View/View.Keyboard.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Terminal.Gui/View/View.Keyboard.cs b/Terminal.Gui/View/View.Keyboard.cs index 642c346358..3028402a9f 100644 --- a/Terminal.Gui/View/View.Keyboard.cs +++ b/Terminal.Gui/View/View.Keyboard.cs @@ -690,11 +690,11 @@ public bool IsHotKeyBound (Key key, out View? boundView) #if DEBUG - if (Application.KeyBindings.TryGet (key, out KeyBinding b)) - { - Debug.WriteLine ( - $"WARNING: InvokeKeyBindings ({key}) - An Application scope binding exists for this key. The registered view will not invoke Command."); - } + //if (Application.KeyBindings.TryGet (key, out KeyBinding b)) + //{ + // Debug.WriteLine ( + // $"WARNING: InvokeKeyBindings ({key}) - An Application scope binding exists for this key. The registered view will not invoke Command."); + //} // TODO: This is a "prototype" debug check. It may be too annoying vs. useful. // Scour the bindings up our View hierarchy