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:
authorJeroen Bakker <j.bakker@atmind.nl>2012-05-17 18:02:01 +0400
committerJeroen Bakker <j.bakker@atmind.nl>2012-05-17 18:02:01 +0400
commit29e407d37b908088d885f0c2a29af260c0762ed8 (patch)
tree92a7294ff02839c70298d60140d4e690398c092e /source/blender/nodes
parent69dc5d094a6dfa42d2a9812c6cf99721f9a2fe4b (diff)
Moved switch node to layout
Diffstat (limited to 'source/blender/nodes')
-rw-r--r--source/blender/nodes/composite/nodes/node_composite_switch.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/nodes/composite/nodes/node_composite_switch.c b/source/blender/nodes/composite/nodes/node_composite_switch.c
index f7b1f9e09e4..ee7e3124a7b 100644
--- a/source/blender/nodes/composite/nodes/node_composite_switch.c
+++ b/source/blender/nodes/composite/nodes/node_composite_switch.c
@@ -50,7 +50,7 @@ void register_node_type_cmp_switch(bNodeTreeType *ttype)
{
static bNodeType ntype;
- node_type_base(ttype, &ntype, CMP_NODE_SWITCH, "Switch", NODE_CLASS_OP_COLOR, NODE_OPTIONS);
+ node_type_base(ttype, &ntype, CMP_NODE_SWITCH, "Switch", NODE_CLASS_LAYOUT, NODE_OPTIONS);
node_type_socket_templates(&ntype, cmp_node_switch_in, cmp_node_switch_out);
node_type_size(&ntype, 110, 60, 120);
nodeRegisterType(ttype, &ntype);