[Bf-blender-cvs] [be109b60e77] temp-geometry-nodes-text: Fix typo Curve -> Curves in socket name

Erik noreply at git.blender.org
Fri Oct 29 23:50:32 CEST 2021


Commit: be109b60e77fc8d6bb1a3cf032168e32d9797109
Author: Erik
Date:   Thu Oct 28 23:34:53 2021 +0200
Branches: temp-geometry-nodes-text
https://developer.blender.org/rBbe109b60e77fc8d6bb1a3cf032168e32d9797109

Fix typo Curve -> Curves in socket name

===================================================================

M	source/blender/nodes/geometry/nodes/node_geo_string_to_curves.cc

===================================================================

diff --git a/source/blender/nodes/geometry/nodes/node_geo_string_to_curves.cc b/source/blender/nodes/geometry/nodes/node_geo_string_to_curves.cc
index 04b48dbebf3..5dd5ca04a6a 100644
--- a/source/blender/nodes/geometry/nodes/node_geo_string_to_curves.cc
+++ b/source/blender/nodes/geometry/nodes/node_geo_string_to_curves.cc
@@ -56,7 +56,7 @@ static void geo_node_string_to_curves_declare(NodeDeclarationBuilder &b)
       .default_value(0.0f)
       .min(0.0f)
       .subtype(PROP_DISTANCE);
-  b.add_output<decl::Geometry>(N_("Curve"));
+  b.add_output<decl::Geometry>(N_("Curves"));
   b.add_output<decl::String>(N_("Remainder"));
   b.add_output<decl::Int>(N_("Line")).field_source();
   b.add_output<decl::Vector>(N_("Pivot Point")).field_source();



More information about the Bf-blender-cvs mailing list