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
path: root/source
diff options
context:
space:
mode:
authorSergey Sharybin <sergey.vfx@gmail.com>2015-09-17 15:28:13 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2015-09-17 15:28:13 +0300
commit174a1f1a456f3a938b7b5d20e088a93cad6d83a7 (patch)
tree36e84f0f4165417e1ef273811b2a213f2061fe2d /source
parent3cee28ebf3c808e511255095aa68d24305721198 (diff)
Fix for broken tree offset after recent change for cyclic nodes support
Diffstat (limited to 'source')
-rw-r--r--source/blender/blenkernel/intern/node.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/node.c b/source/blender/blenkernel/intern/node.c
index 044ca4eba38..c656931d18b 100644
--- a/source/blender/blenkernel/intern/node.c
+++ b/source/blender/blenkernel/intern/node.c
@@ -818,7 +818,7 @@ void nodeChainIter(
bNodeLink *link;
for (link = ntree->links.first; link; link = link->next) {
- if (link->flag & NODE_LINK_VALID) {
+ if ((link->flag & NODE_LINK_VALID) == 0) {
/* Skip links marked as cyclic. */
continue;
}