Draft: Small bugfix in bezier curves

This commit is contained in:
Yorik van Havre
2019-05-14 15:25:40 -03:00
parent 6d2aee2c58
commit fc674fae4e

View File

@@ -5355,8 +5355,8 @@ class _BezCurve(_DraftObject):
except Part.OCCError:
pass
fp.Shape = w
if hasattr(obj,"Area") and hasattr(w,"Area"):
obj.Area = w.Area
if hasattr(fp,"Area") and hasattr(w,"Area"):
fp.Area = w.Area
fp.Placement = plm
@classmethod