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>2018-06-21 13:53:58 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-06-21 13:53:58 +0300
commit8d1ea6a767715f371841d03395aaad44142bbb5a (patch)
tree96b42baa85c6877185a799f7f363d241a2d5fc62 /source/blender
parent244cb8410edfef0f1046cd6dd2096dd1d47cd08e (diff)
Fix T55573: Mode rotate on local axis crashes
Diffstat (limited to 'source/blender')
-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 3c70eaae2d3..93e644b9706 100644
--- a/source/blender/editors/transform/transform_constraints.c
+++ b/source/blender/editors/transform/transform_constraints.c
@@ -559,7 +559,7 @@ static void applyObjectConstraintRot(
/* on setup call, use first object */
if (td == NULL) {
- td = tc->data;
+ td = TRANS_DATA_CONTAINER_FIRST_OK(t)->data;
}
if (t->flag & T_EDIT) {