diff --git a/source/blender/blenkernel/intern/node.c b/source/blender/blenkernel/intern/node.c index f922a455589..08aeb0505fd 100644 --- a/source/blender/blenkernel/intern/node.c +++ b/source/blender/blenkernel/intern/node.c @@ -868,21 +868,21 @@ bNode *nodeAddNodeType(bNodeTree *ntree, int type, bNodeTree *ngroup) else if(type==CMP_NODE_COLOR_SPILL){ NodeChroma *c= MEM_callocN(sizeof(NodeChroma), "node chroma"); node->storage=c; - c->t1= 30.0f; - c->t2= 10.0f; - c->t3= 0.0f; - c->fsize= 0.0f; - c->fstrength= 1.0f; - node->custom1= 1; /* red channel */ - } - else if(type==CMP_NODE_CHROMA){ - NodeChroma *c= MEM_callocN(sizeof(NodeChroma), "node chroma"); - node->storage= c; c->t1= 0.0f; c->t2= 0.0f; c->t3= 0.0f; c->fsize= 0.0f; c->fstrength= 0.0f; + node->custom1= 2; /* green channel */ + } + else if(type==CMP_NODE_CHROMA){ + NodeChroma *c= MEM_callocN(sizeof(NodeChroma), "node chroma"); + node->storage= c; + c->t1= 30.0f; + c->t2= 10.0f; + c->t3= 0.0f; + c->fsize= 0.0f; + c->fstrength= 1.0f; } else if(type==CMP_NODE_CHANNEL_MATTE){ NodeChroma *c= MEM_callocN(sizeof(NodeChroma), "node chroma");