Cocoa: Fix the issue introduced @ 8ecc0ea

for example, the Icon cannot be displayed normally in VirtualTrees
This commit is contained in:
rich2014 2024-06-09 14:09:21 +08:00
parent 1b9571bfcd
commit db6ce9345e

View File

@ -2193,18 +2193,11 @@ begin
CGContextClipToMask(CGContext, ImgRect, MskImage);
end;
if NOT ctx.isFlipped then begin
CGContextScaleCTM(CGContext, 1, -1);
CGContextTranslateCTM(CGContext, 0, -dcHeight);
Y:= dcHeight - (Height + Y);
end;
if NOT SrcDC.ctx.isFlipped then begin
YSrc := Bmp.Height - (SrcHeight + YSrc);
end;
Result := bmp.ImageRep.drawInRect_fromRect_operation_fraction_respectFlipped_hints(
GetNSRect(X, Y, Width, Height), GetNSRect(XSrc, YSrc, SrcWidth, SrcHeight), NSCompositeSourceOver, 1.0, True, nil );
Result := DrawImageRep(GetNSRect(X, Y, Width, Height),GetNSRect(XSrc, YSrc, SrcWidth, SrcHeight), bmp.ImageRep);
if Assigned(MskImage) then
CGImageRelease(MskImage);