diff --git a/src/Mod/Draft/importSVG.py b/src/Mod/Draft/importSVG.py index 5bf9de859..74b98f1fa 100644 --- a/src/Mod/Draft/importSVG.py +++ b/src/Mod/Draft/importSVG.py @@ -887,7 +887,8 @@ class svgHandler(xml.sax.ContentHandler): rot90=FreeCAD.Matrix(0,-1,0,0,1,0) #90 m3=m3.multiply(rot90) m3.move(c.multiply(-1)) - sh.transform(m3) + sh.transformShape(m3) + #sh = sh.transformGeometry(m3) if self.fill: sh = Part.Wire([sh]) sh = Part.Face(sh)