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:
authorLukas Toenne <lukas.toenne@googlemail.com>2011-07-17 20:14:52 +0400
committerLukas Toenne <lukas.toenne@googlemail.com>2011-07-17 20:14:52 +0400
commitb29b0acdceb98b0f67b214223c7624ca5d1e7697 (patch)
tree6679e63d77d4c50d5e154685bf71022866b45402 /source/blender/editors/space_node/node_header.c
parent7e4ccf9349ad7444e43421a012c8b21b23c57ab6 (diff)
Removed the autoconnect call when adding new nodes, this hardly ever gives usable results and leads to annoyed artists.
Diffstat (limited to 'source/blender/editors/space_node/node_header.c')
-rw-r--r--source/blender/editors/space_node/node_header.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/source/blender/editors/space_node/node_header.c b/source/blender/editors/space_node/node_header.c
index a982f4b1994..4f3991e8ff8 100644
--- a/source/blender/editors/space_node/node_header.c
+++ b/source/blender/editors/space_node/node_header.c
@@ -94,8 +94,6 @@ static void do_node_add(bContext *C, void *UNUSED(arg), int event)
if(node->flag & NODE_TEST) node->flag |= NODE_SELECT;
}
- snode_autoconnect(snode, 1, 0);
-
/* deselect after autoconnection */
for(node= snode->edittree->nodes.first; node; node= node->next) {
if(node->flag & NODE_TEST) node->flag &= ~NODE_SELECT;