Skip to content

Commit

Permalink
Merge pull request FreeCAD#7488 from FEA-eng/patch-5
Browse files Browse the repository at this point in the history
PartDesign: change default behavior of Thickness tool to inwards
  • Loading branch information
sliptonic authored Oct 2, 2023
2 parents 885212d + 047334f commit f02a1bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Mod/PartDesign/App/FeatureThickness.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ Thickness::Thickness()
Mode.setEnums(ModeEnums);
ADD_PROPERTY_TYPE(Join, (long(0)), "Thickness", App::Prop_None, "Join type");
Join.setEnums(JoinEnums);
ADD_PROPERTY_TYPE(Reversed, (false), "Thickness", App::Prop_None,
ADD_PROPERTY_TYPE(Reversed, (true), "Thickness", App::Prop_None,
"Apply the thickness towards the solids interior");
ADD_PROPERTY_TYPE(Intersection, (false), "Thickness", App::Prop_None,
"Enable intersection-handling");
Expand Down

0 comments on commit f02a1bb

Please sign in to comment.