From 73f10ef1e0afcdb37a492c82bd0834107e60ccd6 Mon Sep 17 00:00:00 2001 From: Paul Sanford Date: Wed, 6 Jun 2018 23:05:15 -0700 Subject: [PATCH] Ensure SelectionChanged is called on mouse click too --- 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 6d0f411de..e1b9e8179 100644 --- a/Terminal.Gui/Views/RadioGroup.cs +++ b/Terminal.Gui/Views/RadioGroup.cs @@ -166,7 +166,7 @@ namespace Terminal.Gui { SuperView.SetFocus (this); if (me.Y < radioLabels.Length) { - cursor = selected = me.Y; + cursor = Selected = me.Y; SetNeedsDisplay (); } return true;