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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2010-09-25 23:35:59 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2010-09-25 23:35:59 +0400
commit38df1439c87a8e2a08b9995c7f620068322bcdb5 (patch)
tree419d3533be4b83d06af94179a448230f5bf6304e /source/blender/editors/space_node/node_edit.c
parent9da82e2d685098c84f4b17bbc5232df791d34279 (diff)
Fix #23708: F-key make links between nodes didn't add links when a node output
already had a link, not sure why this wasn't done, because the option to do it was in the code.
Diffstat (limited to 'source/blender/editors/space_node/node_edit.c')
-rw-r--r--source/blender/editors/space_node/node_edit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_node/node_edit.c b/source/blender/editors/space_node/node_edit.c
index 5aa512ea904..b6dc0b4db7c 100644
--- a/source/blender/editors/space_node/node_edit.c
+++ b/source/blender/editors/space_node/node_edit.c
@@ -1735,7 +1735,7 @@ static int node_make_link_exec(bContext *C, wmOperator *op)
ED_preview_kill_jobs(C);
- snode_autoconnect(snode, 0, replace);
+ snode_autoconnect(snode, 1, replace);
node_tree_verify_groups(snode->nodetree);
snode_notify(C, snode);