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
committerBastien Montagne <montagne29@wanadoo.fr>2018-01-01 18:23:24 +0300
commit1f7b25e4728fa108c6e2e40fb6f091d22359d929 (patch)
tree20db3871cf1e6cddcaef15c370e9207f9ce56ccc
parentfeabf887824e39c422e1ef96c6f3ad0cd62a9c58 (diff)
T53024 fix n-panel Switch rotation-pole not working for bones wo keys
-rw-r--r--rigify/ui.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/rigify/ui.py b/rigify/ui.py
index 77e06f01..dc9c4553 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)