Fix: Extra space at the front of "Sample Curve" node name

This commit is contained in:
Hans Goudey 2021-12-22 17:13:16 -06:00
parent dca5be9b94
commit 9033d270d5
1 changed files with 1 additions and 1 deletions

View File

@ -287,7 +287,7 @@ void register_node_type_geo_curve_sample()
static bNodeType ntype;
geo_node_type_base(&ntype, GEO_NODE_SAMPLE_CURVE, " Sample Curve", NODE_CLASS_GEOMETRY, 0);
geo_node_type_base(&ntype, GEO_NODE_SAMPLE_CURVE, "Sample Curve", NODE_CLASS_GEOMETRY, 0);
ntype.geometry_node_execute = file_ns::node_geo_exec;
ntype.declare = file_ns::node_declare;
node_type_init(&ntype, file_ns::node_type_init);