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
path: root/source
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2019-06-07 07:11:54 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-06-07 07:11:54 +0300
commitbfb05ee15462f83d5cc504e893bc991f067b5afe (patch)
treea71f1d281e9ea900828bb11dfadaddd4ef837a0e /source
parent5b2907ab69d909d6e790946e823f4804a5b1865c (diff)
Fix T64669: Redo transform fails with constrained axis
Diffstat (limited to 'source')
-rw-r--r--source/blender/editors/transform/transform.c2
1 files changed, 1 insertions, 1 deletions
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];