From cb3da6ff9c45fe5726ad0d17580ebe6636b3ea55 Mon Sep 17 00:00:00 2001 From: wmayer Date: Sat, 24 Sep 2016 18:11:47 +0200 Subject: [PATCH] fixes #0002702: Default cylinder angle 10 deg --- src/Mod/PartDesign/App/FeaturePrimitive.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mod/PartDesign/App/FeaturePrimitive.cpp b/src/Mod/PartDesign/App/FeaturePrimitive.cpp index 8b5267e0fc..c00fe462e4 100644 --- a/src/Mod/PartDesign/App/FeaturePrimitive.cpp +++ b/src/Mod/PartDesign/App/FeaturePrimitive.cpp @@ -215,7 +215,7 @@ PROPERTY_SOURCE(PartDesign::Cylinder, PartDesign::FeaturePrimitive) Cylinder::Cylinder() { ADD_PROPERTY_TYPE(Radius,(10.0f),"Cylinder",App::Prop_None,"The radius of the cylinder"); - ADD_PROPERTY_TYPE(Angle,(10.0f),"Cylinder",App::Prop_None,"The closing angel of the cylinder "); + ADD_PROPERTY_TYPE(Angle,(360.0f),"Cylinder",App::Prop_None,"The closing angel of the cylinder "); ADD_PROPERTY_TYPE(Height,(10.0f),"Cylinder",App::Prop_None,"The height of the cylinder"); Angle.setConstraints(&angleRangeU); Radius.setConstraints(&quantityRange);