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-06-01 16:45:42 +0400
committerLukas Toenne <lukas.toenne@googlemail.com>2013-06-01 16:45:42 +0400
commit8d3cdf292c25e99c2b8a86fb052d7312e5a1a62a (patch)
tree581e13b8222b7311ba72b85a300bde1ec9365432 /source/blender/nodes/texture/nodes/node_texture_common.c
parente46a8f5d76b8f69e66ce5a501d418e1af9ffaa3b (diff)
Extended max size for group node types from 200 to 400, in case users need long socket names visible.
Diffstat (limited to 'source/blender/nodes/texture/nodes/node_texture_common.c')
-rw-r--r--source/blender/nodes/texture/nodes/node_texture_common.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/nodes/texture/nodes/node_texture_common.c b/source/blender/nodes/texture/nodes/node_texture_common.c
index a268fbedfa6..6ab8d27f6e6 100644
--- a/source/blender/nodes/texture/nodes/node_texture_common.c
+++ b/source/blender/nodes/texture/nodes/node_texture_common.c
@@ -166,6 +166,7 @@ void register_node_type_tex_group(void)
RNA_struct_blender_type_set(ntype.ext.srna, &ntype);
node_type_socket_templates(&ntype, NULL, NULL);
+ node_type_size(&ntype, 120, 60, 400);
node_type_label(&ntype, node_group_label);
node_type_update(&ntype, NULL, node_group_verify);
node_type_exec(&ntype, group_initexec, group_freeexec, group_execute);