PowerPDF: remove unexpected frame from RRect

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@5770 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
jesusr 2017-02-28 03:59:25 +00:00
parent eeb56984c3
commit 90eb7065e9

View File

@ -2380,7 +2380,14 @@ begin
end;
if self.GradientColor<>clNone then
ACanvas.PdfCanvas.ClosepathFillStroke
begin
if (LineColor = clNone) or (LineStyle = psClear) then
begin
ACanvas.PdfCanvas.Closepath;
ACanvas.PdfCanvas.Fill;
end else
ACanvas.PdfCanvas.ClosepathFillStroke
end
else
StdFillOrStroke(ACanvas.PDFCanvas);
end;