From feabd1af30ba8461180802d075bfa228e3d4cac9 Mon Sep 17 00:00:00 2001 From: donovaly Date: Thu, 4 Mar 2021 01:43:41 +0100 Subject: [PATCH] [PD] use same helix angle step as for other features All other PD features use a step size of 1.0 for angles. (Personally also for me a step of 5 is not convenient) --- src/Mod/PartDesign/App/FeatureHelix.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mod/PartDesign/App/FeatureHelix.cpp b/src/Mod/PartDesign/App/FeatureHelix.cpp index bdb108f595..b542267b56 100644 --- a/src/Mod/PartDesign/App/FeatureHelix.cpp +++ b/src/Mod/PartDesign/App/FeatureHelix.cpp @@ -73,7 +73,7 @@ PROPERTY_SOURCE(PartDesign::Helix, PartDesign::ProfileBased) // we purposely use not FLT_MAX because this would not be computable const App::PropertyFloatConstraint::Constraints floatTurns = { Precision::Confusion(), INT_MAX, 1.0 }; -const App::PropertyAngle::Constraints floatAngle = { -89.0, 89.0, 5.0 }; +const App::PropertyAngle::Constraints floatAngle = { -89.0, 89.0, 1.0 }; Helix::Helix() {