PartDesign: Change default behavior of Thickness tool to inwards

https://forum.freecadweb.org/viewtopic.php?f=8&t=71856
This commit is contained in:
FEA-eng
2022-09-14 12:40:26 +02:00
committed by luz paz
parent a566edfa43
commit cb9f786cfd

View File

@@ -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,"Apply the thickness towards the solids interior");
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");
}