Commit: 28135c06bb5406feaea250d9aafeb7df51fa7cef Author: Harley Acheson Date: Mon Jun 28 20:58:17 2021 -0700 Branches: master https://developer.blender.org/rB28135c06bb5406feaea250d9aafeb7df51fa7cef
Typo in function identifier: mutli -> multi Fixing small typo of word "multi" in function identifier by renaming "count_mutli_input_socket_links" to "count_multi_input_socket_links" Differential Revision: https://developer.blender.org/D11732 Reviewed by Hans Goudey =================================================================== M source/blender/editors/space_node/node_draw.cc =================================================================== diff --git a/source/blender/editors/space_node/node_draw.cc b/source/blender/editors/space_node/node_draw.cc index 1dc8e1412af..b9dad060121 100644 --- a/source/blender/editors/space_node/node_draw.cc +++ b/source/blender/editors/space_node/node_draw.cc @@ -1766,7 +1766,7 @@ static void node_update(const bContext *C, bNodeTree *ntree, bNode *node) } } -static void count_mutli_input_socket_links(bNodeTree *ntree, SpaceNode *snode) +static void count_multi_input_socket_links(bNodeTree *ntree, SpaceNode *snode) { Map<bNodeSocket *, int> counts; LISTBASE_FOREACH (bNodeLink *, link, &ntree->links) { @@ -1800,7 +1800,7 @@ void node_update_nodetree(const bContext *C, bNodeTree *ntree) SpaceNode *snode = CTX_wm_space_node(C); ntreeTagUsedSockets(ntree); - count_mutli_input_socket_links(ntree, snode); + count_multi_input_socket_links(ntree, snode); /* Update nodes front to back, so children sizes get updated before parents. */ LISTBASE_FOREACH_BACKWARD (bNode *, node, &ntree->nodes) { _______________________________________________ Bf-blender-cvs mailing list Bf-blender-cvs@blender.org List details, subscription details or unsubscribe: https://lists.blender.org/mailman/listinfo/bf-blender-cvs