Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans Goudey <h.goudey@me.com>2021-11-03 01:38:58 +0300
committerHans Goudey <h.goudey@me.com>2021-11-03 01:38:58 +0300
commit11392829adfebd95286586362323ed6a39c31a5c (patch)
tree7edc989ba406d156a698038792fcd2c85ffbfd96
parentf674176d7765079614d3c326616a98f9e6135207 (diff)
Fix T92316: Inconsistent name for Set Curve Tilt node
-rw-r--r--source/blender/nodes/geometry/nodes/node_geo_set_curve_tilt.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/nodes/geometry/nodes/node_geo_set_curve_tilt.cc b/source/blender/nodes/geometry/nodes/node_geo_set_curve_tilt.cc
index dde6d0bab92..a861c35f738 100644
--- a/source/blender/nodes/geometry/nodes/node_geo_set_curve_tilt.cc
+++ b/source/blender/nodes/geometry/nodes/node_geo_set_curve_tilt.cc
@@ -71,7 +71,7 @@ void register_node_type_geo_set_curve_tilt()
{
static bNodeType ntype;
- geo_node_type_base(&ntype, GEO_NODE_SET_CURVE_TILT, "Set Tilt", NODE_CLASS_GEOMETRY, 0);
+ geo_node_type_base(&ntype, GEO_NODE_SET_CURVE_TILT, "Set Curve Tilt", NODE_CLASS_GEOMETRY, 0);
ntype.geometry_node_execute = blender::nodes::geo_node_set_curve_tilt_exec;
ntype.declare = blender::nodes::geo_node_set_curve_tilt_declare;
nodeRegisterType(&ntype);