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-05-14 14:45:13 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-05-14 14:45:34 +0300
commitbf73628978f4a0cc8aa9341eba4e459ae2759c1c (patch)
tree2f3fa0aacec150c89eb90942bbbe1b8c00cb3018 /source/blender/editors/mesh/editmesh_extrude.c
parent80ccad07cc58d51344e32d951e77b362f27aa85c (diff)
Fix extrude adjustment on normal axis
Diffstat (limited to 'source/blender/editors/mesh/editmesh_extrude.c')
-rw-r--r--source/blender/editors/mesh/editmesh_extrude.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/editors/mesh/editmesh_extrude.c b/source/blender/editors/mesh/editmesh_extrude.c
index be37abf0536..614694907c3 100644
--- a/source/blender/editors/mesh/editmesh_extrude.c
+++ b/source/blender/editors/mesh/editmesh_extrude.c
@@ -591,6 +591,9 @@ static void manipulator_mesh_extrude_refresh(const bContext *C, wmManipulatorGro
int constraint_axis[3];
RNA_boolean_get_array(op_transform->ptr, "constraint_axis", constraint_axis);
RNA_boolean_set_array(&macroptr, "constraint_axis", constraint_axis);
+
+ int orientation_type = RNA_enum_get(op_transform->ptr, "constraint_orientation");
+ RNA_enum_set(&macroptr, "constraint_orientation", orientation_type);
}
}