Kaydet (Commit) 697d89b1 authored tarafından Armin Le Grand's avatar Armin Le Grand

i123465 no longer correct svg:d imports

üst 89ded41d
......@@ -320,7 +320,10 @@ namespace basegfx
// add current polygon
if(bIsClosed)
{
closeWithGeometryChange(aCurrPoly);
// #123465# no need to do the old closeWithGeometryChange
// corerection on SVG polygons; this even may lead to wrong
// results e.g. for marker processing
aCurrPoly.setClosed(true);
}
o_rPolyPolygon.append(aCurrPoly);
......@@ -841,7 +844,10 @@ namespace basegfx
// end-process last poly
if(bIsClosed)
{
closeWithGeometryChange(aCurrPoly);
// #123465# no need to do the old closeWithGeometryChange
// corerection on SVG polygons; this even may lead to wrong
// results e.g. for marker processing
aCurrPoly.setClosed(true);
}
o_rPolyPolygon.append(aCurrPoly);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment