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>2007-01-04 14:15:06 +0300
committerCampbell Barton <ideasman42@gmail.com>2007-01-04 14:15:06 +0300
commitb91d5bf951a7cb9f3389f31ee438f2a3fcdf287d (patch)
treec96fa2f1aa536b62a99cdd892bb2a015238cc6cd /source/blender/blenkernel/BKE_plugin_types.h
parent50edac630bdfeab8a84dd0db67f3c61d01008723 (diff)
Changing the VarStruct name length messed up plugins, so changing back.
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 dfb3ddf0eff..2b7c6c06832 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[32];
+ char name[16];
float def, min, max;
char tip[80];
} VarStruct;