Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--animation_animall.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/animation_animall.py b/animation_animall.py
index f919bbb9..70f47f78 100644
--- a/animation_animall.py
+++ b/animation_animall.py
@@ -569,7 +569,7 @@ def animall_update_handler(scene):
'''Force data refresh on frame change.
To be removed when T68666 is fixed, probably.'''
for obj in scene.objects:
- if obj.data is not None:
+ if obj.data is not None and obj.data.animation_data is not None:
obj.update_tag(refresh={'DATA'})