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:
authorCampbell Barton <ideasman42@gmail.com>2011-03-01 10:52:13 +0300
committerCampbell Barton <ideasman42@gmail.com>2011-03-01 10:52:13 +0300
commitb4246549e7cd176f72dc1a9aa1f8b67a43e83311 (patch)
tree6ac3bdd08eceae5707583bc1da67e30aa0e24c66
parent244f456a3c558f67227491dccf7424543e307a98 (diff)
select PoseBone attribute was made only available on bone.
-rw-r--r--release/scripts/op/nla.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/op/nla.py b/release/scripts/op/nla.py
index 2dbf071f7e9..284c6ca354c 100644
--- a/release/scripts/op/nla.py
+++ b/release/scripts/op/nla.py
@@ -98,7 +98,7 @@ def bake(frame_start, frame_end, step=1, only_selected=False):
pose_items = pose.bones.items()
for name, pbone in pose_items:
- if only_selected and not pbone.select:
+ if only_selected and not pbone.bone.select:
continue
for f in frame_range: