TInspectorBar...

Hello,



Delphi XE

TInspectorBar 1.8.3.0



I use inspector bars on many forms.

I have this code:



mnBar.Combo.DropDownCount:=64;



In many places and it has worked since I started using it.

I just upgraded the components pack to fix an issue with the TAdvDirectoryTree filter.



Now it appears that DropDownCount does not work on any form. Testing an item set to ptColor the drop count is always 8, regardless of DropDownCount.



DropDownCount is not in the PDF for the inspector bar.

Searcing the version history turned up nothing.



I know this issue bit me a few years ago for the grid drop count when the count property stopped working and the drop count had to be set on a callback.



I do not see that property/callback for the inspector bar.



I am confused.

Ideas?



Thanks,



Mark

To set the dropdown count for the color property editor, please use:


procedure TForm1.FormCreate(Sender: TObject);
begin
  inspectorbar1.ColorCombo.DropDownCount := 20;
end;

I have retested this here and this is working as expected.

Thanks.