[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [28745] trunk/blender/source/blender/ editors/animation/anim_filter.c: Bugfix #22319: Cannot convert ShapeKeys into NLA strips

Joshua Leung aligorith at gmail.com
Thu May 13 11:15:06 CEST 2010


Revision: 28745
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=28745
Author:   aligorith
Date:     2010-05-13 11:14:58 +0200 (Thu, 13 May 2010)

Log Message:
-----------
Bugfix #22319: Cannot convert ShapeKeys into NLA strips

Typo for which ID-block got passed for shapekeys...

Modified Paths:
--------------
    trunk/blender/source/blender/editors/animation/anim_filter.c

Modified: trunk/blender/source/blender/editors/animation/anim_filter.c
===================================================================
--- trunk/blender/source/blender/editors/animation/anim_filter.c	2010-05-13 07:53:06 UTC (rev 28744)
+++ trunk/blender/source/blender/editors/animation/anim_filter.c	2010-05-13 09:14:58 UTC (rev 28745)
@@ -1707,7 +1707,7 @@
 				
 				/* add NLA tracks - only if expanded or so */
 				if (!(filter_mode & ANIMFILTER_VISIBLE) || FILTER_SKE_OBJD(key) || (filter_mode & ANIMFILTER_CURVESONLY))
-					items += animdata_filter_nla(ac, anim_data, ads, adt, filter_mode, ob, ANIMTYPE_OBJECT, (ID *)ob);
+					items += animdata_filter_nla(ac, anim_data, ads, adt, filter_mode, ob, ANIMTYPE_OBJECT, (ID *)key);
 			},
 			{ /* drivers */
 				/* include shapekey-expand widget? */





More information about the Bf-blender-cvs mailing list