Cleanup: the comma operator was used to separate assignment statements

This was a typo.

Pull Request: https://projects.blender.org/blender/blender/pulls/135900
This commit is contained in:
Jun Mizutani
2025-03-14 15:34:14 +01:00
committed by Jacques Lucke
parent 95c2daaac7
commit 200e26ed15

View File

@@ -284,7 +284,7 @@ static void node_register()
static blender::bke::bNodeType ntype;
geo_node_type_base(
&ntype, "GeometryNodeDistributePointsInVolume", GEO_NODE_DISTRIBUTE_POINTS_IN_VOLUME);
ntype.ui_name = "Distribute Points in Volume",
ntype.ui_name = "Distribute Points in Volume";
ntype.ui_description = "Generate points inside a volume";
ntype.enum_name_legacy = "DISTRIBUTE_POINTS_IN_VOLUME";
ntype.nclass = NODE_CLASS_GEOMETRY;