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:
authorCampbell Barton <ideasman42@gmail.com>2006-12-27 12:31:28 +0300
committerCampbell Barton <ideasman42@gmail.com>2006-12-27 12:31:28 +0300
commit84f60b19c8a2d5b5dbf247a5cf83491dfe25cd26 (patch)
treea72c6f31625c676ae61ffcc00b6abd796e540d54 /source/blender/blenkernel/BKE_plugin_types.h
parent11e035b0fc01cda870523e395e9a1b085fc1df80 (diff)
weightpaint_clean, option to clean all vgroups
weightpaint_envelope_assign - can update active vgroup only weightpaint_normalize - fixups BKE_plugin_types - made the max length 32 ratehr then 16 so you can fill the text space in pupBlock
Diffstat (limited to 'source/blender/blenkernel/BKE_plugin_types.h')
-rw-r--r--source/blender/blenkernel/BKE_plugin_types.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/BKE_plugin_types.h b/source/blender/blenkernel/BKE_plugin_types.h
index 2b7c6c06832..dfb3ddf0eff 100644
--- a/source/blender/blenkernel/BKE_plugin_types.h
+++ b/source/blender/blenkernel/BKE_plugin_types.h
@@ -46,7 +46,7 @@ typedef void (*SeqDoit)(void*, float, float, int, int,
typedef struct VarStruct {
int type;
- char name[16];
+ char name[32];
float def, min, max;
char tip[80];
} VarStruct;