Skip to content

Commit 4703022

Browse files
committed
Fixed CropGeometryParameter::ValueType::is_2d binding
Signed-off-by: Jared Duffey <jared.duffey@bluequartz.net>
1 parent ef6cea5 commit 4703022

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Plugins/SimplnxCore/wrapping/python/simplnxpy.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1395,7 +1395,7 @@ PYBIND11_MODULE(simplnx, mod)
13951395
auto cropGeometryParameterCropValues = py::class_<CropGeometryParameter::ValueType>(cropGeometryParameter, "ValueType");
13961396
cropGeometryParameterCropValues.def(py::init<>());
13971397
cropGeometryParameterCropValues.def(py::init<CropGeometryParameter::ValueType::TypeEnum, bool, bool, bool, bool, SizeVec2, SizeVec2, SizeVec2, FloatVec2Type, FloatVec2Type, FloatVec2Type>());
1398-
cropGeometryParameterCropValues.def_readwrite("2d", &CropGeometryParameter::ValueType::is2D);
1398+
cropGeometryParameterCropValues.def_readwrite("is_2d", &CropGeometryParameter::ValueType::is2D);
13991399
cropGeometryParameterCropValues.def_readwrite("crop_x", &CropGeometryParameter::ValueType::cropX);
14001400
cropGeometryParameterCropValues.def_readwrite("crop_y", &CropGeometryParameter::ValueType::cropY);
14011401
cropGeometryParameterCropValues.def_readwrite("crop_z", &CropGeometryParameter::ValueType::cropZ);

0 commit comments

Comments
 (0)