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:
authormano-wii <germano.costa@ig.com.br>2020-01-02 18:48:30 +0300
committermano-wii <germano.costa@ig.com.br>2020-01-02 18:53:46 +0300
commitde530a95dc7b482dc22c933b9b8b2a98c79b5663 (patch)
tree2be471ce0d6a736c97d344e37542e8a664b4532b /source/blender/editors/transform/transform_orientations.c
parent2e06a6bec3f5ed078a544dea9c4f842e403abbc0 (diff)
Transform: Pose: Partial support for Auto IK + X-Mirror
Fix T69572 TODO: support `Relative-Mirror` as well. Maniphest Tasks: T69572 Differential Revision: https://developer.blender.org/D5862
Diffstat (limited to 'source/blender/editors/transform/transform_orientations.c')
-rw-r--r--source/blender/editors/transform/transform_orientations.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/transform/transform_orientations.c b/source/blender/editors/transform/transform_orientations.c
index 3159464072e..1952a2c862e 100644
--- a/source/blender/editors/transform/transform_orientations.c
+++ b/source/blender/editors/transform/transform_orientations.c
@@ -413,7 +413,7 @@ static int count_bone_select(bArmature *arm, ListBase *lb, const bool do_it)
int total = 0;
for (bone = lb->first; bone; bone = bone->next) {
- bone->flag &= ~BONE_TRANSFORM;
+ bone->flag &= ~(BONE_TRANSFORM | BONE_TRANSFORM_MIRROR);
do_next = do_it;
if (do_it) {
if (bone->layer & arm->layer) {