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:
Diffstat (limited to 'source/blender/editors/transform/transform_generics.c')
-rw-r--r--source/blender/editors/transform/transform_generics.c16
1 files changed, 12 insertions, 4 deletions
diff --git a/source/blender/editors/transform/transform_generics.c b/source/blender/editors/transform/transform_generics.c
index e4063c055d6..9d94d229b25 100644
--- a/source/blender/editors/transform/transform_generics.c
+++ b/source/blender/editors/transform/transform_generics.c
@@ -1681,13 +1681,21 @@ void initTransInfo(bContext *C, TransInfo *t, wmOperator *op, const wmEvent *eve
}
t->orientation.types[0] = orient_type_default;
- t->orientation.types[1] = orient_type_constraint;
- t->orientation.types[2] = orient_type_constraint != V3D_ORIENT_GLOBAL ? V3D_ORIENT_GLOBAL :
- V3D_ORIENT_LOCAL;
t->orientation.custom = custom_orientation;
+ /* To keep the old behavior logic to init contraint orientarions became this: */
+ t->orientation.types[1] = V3D_ORIENT_GLOBAL;
+ t->orientation.types[2] = orient_type_constraint != V3D_ORIENT_GLOBAL ?
+ orient_type_constraint :
+ V3D_ORIENT_LOCAL;
+
if (t->con.mode & CON_APPLY) {
- t->orientation.index = 1;
+ if (orient_type_constraint == V3D_ORIENT_GLOBAL) {
+ t->orientation.index = 1;
+ }
+ else {
+ t->orientation.index = 2;
+ }
}
}