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-21 22:47:55 +0400
committerJeroen Bakker <j.bakker@atmind.nl>2012-05-21 22:47:55 +0400
commitff87bdecfeedcb16155448a9cb6fe793f2c452e2 (patch)
treef95d3afd8acd16105af3c5729771adfd306b7099 /source/blender/nodes
parentf76419d6def8afe12026fa6f2c7d932d04c455d2 (diff)
[#31410] Code review testing: The color correction node in particular is
quite problematic in button layout * Added first column with labels * increased max size of node * moved the start/end midtones to the bottom of the node
Diffstat (limited to 'source/blender/nodes')
-rw-r--r--source/blender/nodes/composite/nodes/node_composite_colorcorrection.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/nodes/composite/nodes/node_composite_colorcorrection.c b/source/blender/nodes/composite/nodes/node_composite_colorcorrection.c
index af085418c0e..929efaef2c8 100644
--- a/source/blender/nodes/composite/nodes/node_composite_colorcorrection.c
+++ b/source/blender/nodes/composite/nodes/node_composite_colorcorrection.c
@@ -81,7 +81,7 @@ void register_node_type_cmp_colorcorrection(bNodeTreeType *ttype)
node_type_base(ttype, &ntype, CMP_NODE_COLORCORRECTION, "Color Correction", NODE_CLASS_OP_COLOR, NODE_OPTIONS);
node_type_socket_templates(&ntype, cmp_node_colorcorrection_in, cmp_node_colorcorrection_out);
- node_type_size(&ntype, 400, 200, 400);
+ node_type_size(&ntype, 400, 200, 500);
node_type_init(&ntype, node_composit_init_colorcorrection);
node_type_storage(&ntype, "NodeColorCorrection", node_free_standard_storage, node_copy_standard_storage);