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>2015-11-24 08:50:21 +0300
committerCampbell Barton <ideasman42@gmail.com>2015-11-24 08:50:21 +0300
commit6ba9d1094aa168d2b2199e5f29ea5d9458757212 (patch)
treedf4ef08ad4382edb9fac4b0e965a49d9578ee976 /source/blender/editors/transform/transform_constraints.c
parentc3e7dfa82d1734505dfb82d68690bab9544795ee (diff)
Fix T46805: Scale along axis fails w/ Python
't->value' no longer has constraint matrix applied for translate, fix for T46003 is no longer needed.
Diffstat (limited to 'source/blender/editors/transform/transform_constraints.c')
-rw-r--r--source/blender/editors/transform/transform_constraints.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/transform/transform_constraints.c b/source/blender/editors/transform/transform_constraints.c
index f6422446e50..9fd5b7288d4 100644
--- a/source/blender/editors/transform/transform_constraints.c
+++ b/source/blender/editors/transform/transform_constraints.c
@@ -150,7 +150,7 @@ static void postConstraintChecks(TransInfo *t, float vec[3], float pvec[3])
/* autovalues is operator param, use that directly but not if snapping is forced */
if (t->flag & T_AUTOVALUES && (t->tsnap.status & SNAP_FORCED) == 0) {
- mul_v3_m3v3(vec, t->con.imtx, t->auto_values);
+ copy_v3_v3(vec, t->auto_values);
constraintAutoValues(t, vec);
/* inverse transformation at the end */
}