THTMLComboBox DropWidth issue

I'm using an THTMLComboBox component,


If I set at design time the dropwidth property, it accept the value,
but at runtime it's not applied, the width of the dropdown it's always large like the component.

At design time, if I close my form and reopen it, the dropwidth property value is set back to the width value.

The only way to set the property (and see the result) is to set the property by code after the OnCreate event of the form.

What I am missing?

Thanks

I cannot reproduce this. Do you use the latest version of the component?


This was retested with the latest version and a runtime initialized DropWidth via:

procedure TForm1.FormCreate(Sender: TObject);
begin
  HTMLComboBox1.DropWidth:= 250;
end;

and this works as expected.