From 4a0dc8d4d94f10b93de4a8bf4441e466da70a64b Mon Sep 17 00:00:00 2001 From: Juho Vepsalainen Date: Fri, 28 Dec 2007 08:04:37 +0000 Subject: Bugfix - Socket selection status was not updated properly on file load This commit adds a missing initialization that caused "Toggle Link (f key)" not to work properly in case a file with an existing selection status was opened. --- source/blender/blenloader/intern/readfile.c | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'source/blender/blenloader/intern') diff --git a/source/blender/blenloader/intern/readfile.c b/source/blender/blenloader/intern/readfile.c index 043febbbc75..a886c0d195b 100644 --- a/source/blender/blenloader/intern/readfile.c +++ b/source/blender/blenloader/intern/readfile.c @@ -1524,6 +1524,22 @@ static void direct_link_nodetree(FileData *fd, bNodeTree *ntree) link->tosock= newdataadr(fd, link->tosock); } + /* set selin and selout */ + for(node= ntree->nodes.first; node; node= node->next) { + for(sock= node->inputs.first; sock; sock= sock->next) { + if(sock->flag & SOCK_SEL) { + ntree->selin= sock; + break; + } + } + for(sock= node->outputs.first; sock; sock= sock->next) { + if(sock->flag & SOCK_SEL) { + ntree->selout= sock; + break; + } + } + } + /* type verification is in lib-link */ } -- cgit v1.2.3