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>2013-03-20 14:06:28 +0400
committerLukas Toenne <lukas.toenne@googlemail.com>2013-03-20 14:06:28 +0400
commita385d5f682156cac12375067a7b4d370e6a3a08b (patch)
tree65de78cd47ad7943befb6348a45f788735d94cd2
parent3f1034c2b1643e9abb87abf041221b4590b060c6 (diff)
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.
-rw-r--r--source/blender/compositor/intern/COM_Converter.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/compositor/intern/COM_Converter.cpp b/source/blender/compositor/intern/COM_Converter.cpp
index 80f5b4fc149..80ae952b87f 100644
--- a/source/blender/compositor/intern/COM_Converter.cpp
+++ b/source/blender/compositor/intern/COM_Converter.cpp
@@ -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;