From bd59cea7f3ab84ec55e652262c4885c50a3a890f Mon Sep 17 00:00:00 2001 From: wmayer Date: Fri, 17 Nov 2017 12:18:24 +0100 Subject: [PATCH] fix Shaft Wizard due to renamed property --- src/Mod/PartDesign/WizardShaft/ShaftFeature.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mod/PartDesign/WizardShaft/ShaftFeature.py b/src/Mod/PartDesign/WizardShaft/ShaftFeature.py index 92c0d993ff..2810237ced 100644 --- a/src/Mod/PartDesign/WizardShaft/ShaftFeature.py +++ b/src/Mod/PartDesign/WizardShaft/ShaftFeature.py @@ -109,7 +109,7 @@ class ShaftFeature: if oldLength == 0: # create feature self.feature = self.Doc.addObject("PartDesign::Revolution","RevolutionShaft") - self.feature.Sketch = self.sketch + self.feature.Profile = self.sketch self.feature.ReferenceAxis = (self.sketch,['H_Axis']) self.feature.Angle = 360.0 self.Doc.recompute()