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:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2014-04-20 16:36:09 +0400
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2014-04-20 16:47:46 +0400
commit1e3f8b517be22700498d0243e004026bd3bebec4 (patch)
tree6e8c67b3dd4bb234a6fe04927d55a8152b732773 /source/blender/nodes/texture/nodes/node_texture_common.c
parent97409c93fa348d0d6e580e0c7819e8f2e690375c (diff)
Nodes: make default group nodes slighly wider, to match other node width defaults.
Diffstat (limited to 'source/blender/nodes/texture/nodes/node_texture_common.c')
-rw-r--r--source/blender/nodes/texture/nodes/node_texture_common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/nodes/texture/nodes/node_texture_common.c b/source/blender/nodes/texture/nodes/node_texture_common.c
index 7e65c472eef..914f1ef5110 100644
--- a/source/blender/nodes/texture/nodes/node_texture_common.c
+++ b/source/blender/nodes/texture/nodes/node_texture_common.c
@@ -172,7 +172,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_size(&ntype, 140, 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);