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:
Diffstat (limited to 'source/blender/nodes/intern')
-rw-r--r--source/blender/nodes/intern/node_common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/nodes/intern/node_common.c b/source/blender/nodes/intern/node_common.c
index d2ec5ee032b..362ed59a38e 100644
--- a/source/blender/nodes/intern/node_common.c
+++ b/source/blender/nodes/intern/node_common.c
@@ -138,7 +138,7 @@ bNode *node_group_make_from_selected(bNodeTree *ntree)
if (totnode==0) return NULL;
/* check if all connections are OK, no unselected node has both
- inputs and outputs to a selection */
+ * inputs and outputs to a selection */
for (link= ntree->links.first; link; link= link->next) {
if (link->fromnode && link->tonode && link->fromnode->flag & NODE_SELECT)
link->tonode->done |= 1;