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:
authorJulian Eisel <julian@blender.org>2021-11-03 20:07:36 +0300
committerJulian Eisel <julian@blender.org>2021-11-03 20:07:36 +0300
commite10caf6fe3c23def05d35c5a5bad58165cfa77fd (patch)
tree16a6a32de4c75fc8143b1fe97f31633b646dd6f6 /source/blender/nodes
parenta7672caeb255e3c47071edfa42ef9805b64fca0b (diff)
parenta827864e6b1ee34af759dea61f832076c0e67c44 (diff)
Merge remote-tracking branch 'origin/blender-v3.0-release'
Diffstat (limited to 'source/blender/nodes')
-rw-r--r--source/blender/nodes/intern/derived_node_tree.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/nodes/intern/derived_node_tree.cc b/source/blender/nodes/intern/derived_node_tree.cc
index fb12157f147..14d6c77299b 100644
--- a/source/blender/nodes/intern/derived_node_tree.cc
+++ b/source/blender/nodes/intern/derived_node_tree.cc
@@ -266,7 +266,7 @@ void DOutputSocket::foreach_target_socket(ForeachTargetSocketFn target_fn,
}
/* The internal link only forwards the first incoming link. */
if (linked_socket->is_multi_input_socket()) {
- if (linked_socket->directly_linked_links()[0] == link) {
+ if (linked_socket->directly_linked_links()[0] != link) {
continue;
}
}