Fix for compositor bug introduced in pynodes branch by removing the default MuteNode for unspecified nodes in the COM_Converter. Not sure why i removed this in the first place, but it means that reroute nodes are not properly replaced in composites. It worked for preview and viewer composite because the reroute nodes are replaced there already by the node tree localization ... this needs to be cleaned up.

This commit is contained in:
Lukas Toenne 2013-03-20 10:06:28 +00:00
parent 3f1034c2b1
commit a385d5f682

@ -403,6 +403,7 @@ Node *Converter::convert(bNode *b_node, bool fast)
node = new PixelateNode(b_node);
break;
default:
node = new MuteNode(b_node);
break;
}
return node;