Skip to content

Commit

Permalink
Forgot to make the new mat_axis domain property optional.
Browse files Browse the repository at this point in the history
  • Loading branch information
SteveMaas1978 committed Apr 30, 2024
1 parent 2c081ff commit 2e924d0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion FECore/FEShellDomain.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ SOFTWARE.*/
#include "FEMaterial.h"

BEGIN_FECORE_CLASS(FEShellDomain, FEDomain)
ADD_PROPERTY(m_matAxis, "mat_axis");
ADD_PROPERTY(m_matAxis, "mat_axis", FEProperty::Optional);
END_FECORE_CLASS();

//-----------------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion FECore/FESolidDomain.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ SOFTWARE.*/
#include "FEModel.h"

BEGIN_FECORE_CLASS(FESolidDomain, FEDomain)
ADD_PROPERTY(m_matAxis, "mat_axis");
ADD_PROPERTY(m_matAxis, "mat_axis", FEProperty::Optional);
END_FECORE_CLASS();

//-----------------------------------------------------------------------------
Expand Down

0 comments on commit 2e924d0

Please sign in to comment.