RadioGroup: only catch the hotkey if no other control processed the event

This commit is contained in:
Miguel de Icaza
2018-02-17 22:23:56 -05:00
parent 470a3fb128
commit cbc6d6a498

View File

@@ -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)) {