Easy and hard way of getting SegmentedControl unselected

Desktop
I have SegmentedControl Segment that is remaining selected after calling a method. I presume it’s not a XOJO bug and it’s something else.
Invalidate doesn’t unselect it.

So, It calls a method, which finishes and returns, but the one segment is still selected. How do I turn it off?

Segments stay selected and don’t work like PushButtons.

Perhaps you want to do something like this in the Segment’s Pressed event to clear the selection:

Me.SegmentAt(segmentIndex).Selected = False

My apologies for posting. I did have it.
me.SegmentAt(1).Selected = False