radio button callback when selected is generated wrongly by TouchGFX 4.25
So if you have a radio button with a callback function set via TouchGFX on click selected, the code generated in the BaseView has a typo in setAction
It uses the function SetAction (with capital S) which is wrong
TO REPLICATE:
- Create a radio button
- create a Interactions "radio button is selected" that calls a virtual function
- generate the code
- the code generated:
radioButton.SetAction(radioButtonSelectedCallback);instead of
radioButton.setAction(radioButtonSelectedCallback);On another note, no callback is called if the radio button is selected, even if seAction is manually fixed
