From 8903169218de302bb0cb8d4607d450b431069dc6 Mon Sep 17 00:00:00 2001 From: Robert Holcomb Date: Sun, 14 Jan 2007 03:52:55 +0000 Subject: [PATCH] Corrected initialization values for the chroma key node when it is created. --- source/blender/blenkernel/intern/node.c | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) 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");