From cbc6d6a498972dcb6c03689645f8ca30585c2ffb Mon Sep 17 00:00:00 2001 From: Miguel de Icaza Date: Sat, 17 Feb 2018 22:23:56 -0500 Subject: [PATCH] RadioGroup: only catch the hotkey if no other control processed the event --- Terminal.Gui/Views/RadioGroup.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Terminal.Gui/Views/RadioGroup.cs b/Terminal.Gui/Views/RadioGroup.cs index bb4a2be1d..3091cb646 100644 --- a/Terminal.Gui/Views/RadioGroup.cs +++ b/Terminal.Gui/Views/RadioGroup.cs @@ -88,7 +88,7 @@ namespace Terminal.Gui { } } - public override bool ProcessHotKey (KeyEvent kb) + public override bool ProcessColdKey (KeyEvent kb) { var key = kb.KeyValue; if (key < Char.MaxValue && Char.IsLetterOrDigit ((char)key)) {