TMSFMXSpinner: DisableFocusEffect not working

Hello,

property DisableFocusEffect is not working. I checked the source, it seems that developer(s) forgot to check if option is enabled.

Best regards

Andy

Hi, 


The focus effect can be set per column with the following code:


procedure TForm101.TMSFMXSpinner1ApplyStyleLookup(Sender: TObject);
begin
  TMSFMXSpinner1.Columns[0].Shape.DisableFocusEffect := True;
  TMSFMXSpinner1.Columns[1].Shape.DisableFocusEffect := True;
  TMSFMXSpinner1.Columns[2].Shape.DisableFocusEffect := True;
end;

Kind Regards, 
Pieter

Hi Pieter,

thanks, this works - but anyway you should think about DisableFocusEffect property of TMSFMXSpinner. It should at least take effect for all columns if you activate the option in object inspector.

Regards

Andy

We've applied an improvement for this.