Just installed 9.00
It crashes when GripMode is set – otherwise OK
FCommonData.FCacheBmp is NIL
function TsSkinProvider.RBGripPoint(const ImgIndex :integer): TPoint;
begin
Result := Point(FCommonData.FCacheBmp.Width – WidthOfImage(FCommonData.SkinManager.ma[ImgIndex]) – SysBorderWidth(Form.Handle, BorderForm) – ShadowSize.Right – 1,
FCommonData.FCacheBmp.Height – HeightOfImage(FCommonData.SkinManager.ma[ImgIndex]) – SysBorderWidth(Form.Handle, BorderForm) – ShadowSize.Bottom – 1);
end;
When I add a statement to skip draw grip when bitmap is NIL – it gets executed at a later time … though bitmap gets set later (to late..)