From e6e78a143e0669a0da2c6ca2ae1d18f0f1c9caba Mon Sep 17 00:00:00 2001 From: Joshua Leung Date: Sat, 22 Nov 2014 00:55:57 +1300 Subject: Bugfix T41527: Animations of world texture properties invisible in anim editors Was caused by a typo - "items" was used in place of "tmp_items", causing animation in the texture to get ignored if nothing else was present --- source/blender/editors/animation/anim_filter.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/editors/animation/anim_filter.c') diff --git a/source/blender/editors/animation/anim_filter.c b/source/blender/editors/animation/anim_filter.c index cedaea716e3..3493fb181cc 100644 --- a/source/blender/editors/animation/anim_filter.c +++ b/source/blender/editors/animation/anim_filter.c @@ -2257,7 +2257,7 @@ static size_t animdata_filter_ds_world(bAnimContext *ac, ListBase *anim_data, bD /* textures for world */ if (!(ads->filterflag & ADS_FILTER_NOTEX)) - items += animdata_filter_ds_textures(ac, &tmp_data, ads, (ID *)wo, filter_mode); + tmp_items += animdata_filter_ds_textures(ac, &tmp_data, ads, (ID *)wo, filter_mode); /* nodes */ if ((wo->nodetree) && !(ads->filterflag & ADS_FILTER_NONTREE)) -- cgit v1.2.3