From bfb05ee15462f83d5cc504e893bc991f067b5afe Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 7 Jun 2019 14:11:54 +1000 Subject: [PATCH] Fix T64669: Redo transform fails with constrained axis --- source/blender/editors/transform/transform.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/editors/transform/transform.c b/source/blender/editors/transform/transform.c index 2deba69ed22..1170e2ea5a8 100644 --- a/source/blender/editors/transform/transform.c +++ b/source/blender/editors/transform/transform.c @@ -2665,7 +2665,7 @@ bool initTransform(bContext *C, TransInfo *t, wmOperator *op, const wmEvent *eve /* Constraint init from operator */ if ((t->flag & T_MODAL) || /* For mirror operator the constraint axes are effectively the values. */ - (RNA_struct_find_property(op->ptr, "values") == NULL)) { + (RNA_struct_find_property(op->ptr, "value") == NULL)) { if ((prop = RNA_struct_find_property(op->ptr, "constraint_axis")) && RNA_property_is_set(op->ptr, prop)) { bool constraint_axis[3];