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:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2019-01-15 14:07:22 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2019-01-15 14:07:22 +0300
commit39acbebe46ef90003201077867a394ebc60d540c (patch)
tree5fc561185ef34a331cad756a5a7f5b5ae075c892 /source/blender/editors/transform
parent48f38f850b8f00164a33cf430ffc2877f8faf063 (diff)
Fix T60498: Auto IK doesn't work immediately.
Diffstat (limited to 'source/blender/editors/transform')
-rw-r--r--source/blender/editors/transform/transform_conversions.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/source/blender/editors/transform/transform_conversions.c b/source/blender/editors/transform/transform_conversions.c
index cf911a995a1..869cccd0c94 100644
--- a/source/blender/editors/transform/transform_conversions.c
+++ b/source/blender/editors/transform/transform_conversions.c
@@ -1179,7 +1179,10 @@ static void createTransPose(TransInfo *t)
/* do we need to add temporal IK chains? */
if ((arm->flag & ARM_AUTO_IK) && t->mode == TFM_TRANSLATION) {
ik_on = pose_grab_with_ik(bmain, ob);
- if (ik_on) t->flag |= T_AUTOIK;
+ if (ik_on) {
+ t->flag |= T_AUTOIK;
+ has_translate_rotate[0] = true;
+ }
}
}