There used to be an arrow in the title bar button (Style = bsButton) indicating a drop down list. Is it removed? Button width is still the same but the arrow is not painted.
See attachment.
I see there is a change in sSkinProvider.pas:
5972: if (Item.Style in [bsMenu, bsButton]) and (Item.DropDownMenu <> nil) then begin
5973: ArrowSize := acArrowSize * integer(Item.Style = bsMenu) * 2;
That is causing the arrow to disappear. If I comment out “integer(Item.Style = bsMenu)”, it will work. But is there a reason why this is done?