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.c')
-rw-r--r--source/blender/editors/transform/transform.c19
1 files changed, 19 insertions, 0 deletions
diff --git a/source/blender/editors/transform/transform.c b/source/blender/editors/transform/transform.c
index 74fc1406795..42adf1ee456 100644
--- a/source/blender/editors/transform/transform.c
+++ b/source/blender/editors/transform/transform.c
@@ -3524,10 +3524,29 @@ static void Bend(TransInfo *t, const int UNUSED(mval[2]))
static void initShear_mouseInputMode(TransInfo *t)
{
float dir[3];
+ bool dir_flip = false;
copy_v3_v3(dir, t->orient_matrix[t->orient_axis_ortho]);
+ /* Needed for axis aligned view gizmo. */
+ if (t->orientation.user == V3D_ORIENT_VIEW) {
+ if (t->orient_axis_ortho == 0) {
+ if (t->center2d[1] > t->mouse.imval[1]) {
+ dir_flip = !dir_flip;
+ }
+ }
+ else if (t->orient_axis_ortho == 1) {
+ if (t->center2d[0] > t->mouse.imval[0]) {
+ dir_flip = !dir_flip;
+ }
+ }
+ }
+
/* Without this, half the gizmo handles move in the opposite direction. */
if ((t->orient_axis_ortho + 1) % 3 != t->orient_axis) {
+ dir_flip = !dir_flip;
+ }
+
+ if (dir_flip) {
negate_v3(dir);
}