[Bf-blender-cvs] [029e6b51746] master: Geometry Nodes: String to Curves rename Max Width

Erik noreply at git.blender.org
Fri May 20 17:13:13 CEST 2022


Commit: 029e6b51746bc8992c2465351168922545dbdc7a
Author: Erik
Date:   Fri May 20 17:11:06 2022 +0200
Branches: master
https://developer.blender.org/rB029e6b51746bc8992c2465351168922545dbdc7a

Geometry Nodes: String to Curves rename Max Width

This patch changes the Text Box Width socket to always have that label
instead of switching to "Max Width" when Overflow mode is picked.

Bug report: T97060

Differential Revision: https://developer.blender.org/D14909

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

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 658de02fdab..33f5eccd719 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
@@ -97,12 +97,8 @@ static void node_update(bNodeTree *ntree, bNode *node)
       ntree, socket_remainder, overflow == GEO_NODE_STRING_TO_CURVES_MODE_TRUNCATE);
 
   bNodeSocket *height_socket = (bNodeSocket *)node->inputs.last;
-  bNodeSocket *width_socket = height_socket->prev;
   nodeSetSocketAvailability(
       ntree, height_socket, overflow != GEO_NODE_STRING_TO_CURVES_MODE_OVERFLOW);
-  node_sock_label(width_socket,
-                  overflow == GEO_NODE_STRING_TO_CURVES_MODE_OVERFLOW ? N_("Max Width") :
-                                                                        N_("Text Box Width"));
 }
 
 static float3 get_pivot_point(GeoNodeExecParams &params, CurveEval &curve)



More information about the Bf-blender-cvs mailing list