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:
authorJoshua Leung <aligorith@gmail.com>2016-03-26 13:00:20 +0300
committerJoshua Leung <aligorith@gmail.com>2016-03-26 13:00:20 +0300
commit6a0c18765307fba22a2fab78cadcabc73c9b10bb (patch)
tree5e90af8b2049fe6ac6e536f0ca244094c91e5792 /source/blender/makesdna/DNA_anim_types.h
parent5759e335c3462b9d705b68be18d621364af18688 (diff)
Revert "Fix T47896: Scripted Expression string length limit is too short for some autogenerated expressions"
This reverts commit 322f86d6b330ebeb1da5c1f527714745dc901460.
Diffstat (limited to 'source/blender/makesdna/DNA_anim_types.h')
-rw-r--r--source/blender/makesdna/DNA_anim_types.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesdna/DNA_anim_types.h b/source/blender/makesdna/DNA_anim_types.h
index 55998ba6e9f..fdad6aae094 100644
--- a/source/blender/makesdna/DNA_anim_types.h
+++ b/source/blender/makesdna/DNA_anim_types.h
@@ -411,7 +411,7 @@ typedef struct ChannelDriver {
/* python expression to execute (may call functions defined in an accessory file)
* which relates the target 'variables' in some way to yield a single usable value
*/
- char expression[512]; /* expression to compile for evaluation */
+ char expression[256]; /* expression to compile for evaluation */
void *expr_comp; /* PyObject - compiled expression, don't save this */
float curval; /* result of previous evaluation */