Explorar el Código

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

Miguel de Icaza hace 7 años
padre
commit
cbc6d6a498
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      Terminal.Gui/Views/RadioGroup.cs

+ 1 - 1
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)) {