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:
authorLucio Rossi <lucio.rossi75@gmail.com>2017-10-25 20:36:08 +0300
committerLucio Rossi <lucio.rossi75@gmail.com>2017-10-25 20:36:32 +0300
commite6ecb6a1948a065030566ad8fdda830359bdc93d (patch)
tree52ab41b15725cd5f476658071c63f6c0a2d00a36 /rigify/ui.py
parent592493c6d9d9cdb336c174744f80aeb195d89d71 (diff)
T53024 fix n-panel Switch rotation-pole not working for bones wo keys
Diffstat (limited to 'rigify/ui.py')
-rw-r--r--rigify/ui.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/rigify/ui.py b/rigify/ui.py
index 458dceed..7d5490e0 100644
--- a/rigify/ui.py
+++ b/rigify/ui.py
@@ -1189,7 +1189,7 @@ def rotPoleToggle(rig, window='ALL', value=False, toggle=False, bake=False):
args = (controls[0], controls[6], controls[5], pole, parent)
for f in frames:
- if not bones_in_frame(f, rig, *args):
+ if bake and not bones_in_frame(f, rig, *args):
continue
scn.frame_set(f)
func1(**kwargs1)