Surface properties are hidden

Surface properties are now hidden. Read-only made creation
This commit is contained in:
balazs-bamer
2015-02-05 17:09:41 +01:00
committed by wmayer
parent d3fb21f93b
commit 05335359ea

View File

@@ -48,8 +48,8 @@ const char* BSurf::FillTypeEnums[] = {"Invalid", "Sretched", "Coons", "Curved
BSurf::BSurf(): Feature()
{
ADD_PROPERTY_TYPE(FillType, ((long)0), "Surface", App::Prop_None, "Boundary of the surface");
ADD_PROPERTY_TYPE(BoundaryList, (0,"Dummy"), "Surface", App::Prop_None, "Boundary of the surface");
ADD_PROPERTY_TYPE(FillType, ((long)0), "Surface", App::Prop_Hidden, "Boundary of the surface");
ADD_PROPERTY_TYPE(BoundaryList, (0,"Dummy"), "Surface", App::Prop_Hidden, "Boundary of the surface");
FillType.setEnums(FillTypeEnums);
}