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>2009-07-07 14:25:55 +0400
committerJoshua Leung <aligorith@gmail.com>2009-07-07 14:25:55 +0400
commite22fefc2c8ef2c844d32d9aed23a04013cc364fb (patch)
tree336330cba67059ba2ec3711b7628f5999813afe9 /source/blender/editors/transform
parenta86d20e5a26700beac595bd8aaccb646be0f802c (diff)
NLA SoC: Fixed bug with NLA-Transform
Strip-sorting code was buggy, as it was trying to access an invalid pointer, so the call to sort strips after transform was temporarily disabled in previous commits.
Diffstat (limited to 'source/blender/editors/transform')
-rw-r--r--source/blender/editors/transform/transform_conversions.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/source/blender/editors/transform/transform_conversions.c b/source/blender/editors/transform/transform_conversions.c
index 53c8e08ee74..0d19eeb913e 100644
--- a/source/blender/editors/transform/transform_conversions.c
+++ b/source/blender/editors/transform/transform_conversions.c
@@ -4836,8 +4836,7 @@ void special_aftertrans_update(TransInfo *t)
NlaTrack *nlt= (NlaTrack *)ale->data;
/* make sure strips are in order again */
- // FIXME: this is buggy
- //BKE_nlatrack_sort_strips(nlt);
+ BKE_nlatrack_sort_strips(nlt);
/* remove the temp metas */
BKE_nlastrips_clear_metas(&nlt->strips, 0, 1);