All TAdvSmoothToogleButton can be up.

Hello,

When I use this button with 2 other who have same group index, I can have state up for all buttons :( .
Normaly, just only one can be down and the others must be up.

This is a bug? Or how can I solve this problem?

Regards

Stéf

Hi, 


You can try the following code, we will investigate here what we can implement so both behaviors can be implemented (always one down or all up)

procedure TForm1127.AdvSmoothToggleButton1Click(Sender: TObject);
begin
  (Sender as TAdvSmoothToggleButton).Down := true;
end;

Kind Regards, 
Pieter

It work fine

Thank you :-)

Regards