Commit: e2e69f6011705c02f9839a75823fc5f3a385ffb8
Author: Joshua Leung
Date:   Sat Nov 22 00:55:57 2014 +1300
Branches: input_method_editor
https://developer.blender.org/rBe2e69f6011705c02f9839a75823fc5f3a385ffb8

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

===================================================================

M       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 cedaea7..3493fb1 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))

_______________________________________________
Bf-blender-cvs mailing list
[email protected]
http://lists.blender.org/mailman/listinfo/bf-blender-cvs

Reply via email to