Fix T76260: Inverted rotation in non-3d views

Issue introduced in rBc57e4418bb85.
This commit is contained in:
Germano Cavalcante 2020-04-30 08:38:18 -03:00
parent ae98a033c8
commit 41b45d9159
Notes: blender-bot 2023-11-20 12:14:32 +01:00
Referenced by issue #76260, 2.90 Graph editor - rotating rotates in opposite direction
1 changed files with 6 additions and 6 deletions

View File

@ -476,20 +476,20 @@ void initTransformOrientation(bContext *C, TransInfo *t, short orientation)
break;
case V3D_ORIENT_VIEW:
case V3D_ORIENT_VIEW: {
float mat[3][3];
if ((t->spacetype == SPACE_VIEW3D) && (t->region->regiontype == RGN_TYPE_WINDOW)) {
float mat[3][3];
BLI_strncpy(t->spacename, TIP_("view"), sizeof(t->spacename));
copy_m3_m4(mat, t->viewinv);
normalize_m3(mat);
negate_v3(mat[2]);
copy_m3_m3(t->spacemtx, mat);
}
else {
unit_m3(t->spacemtx);
unit_m3(mat);
}
negate_v3(mat[2]);
copy_m3_m3(t->spacemtx, mat);
break;
}
case V3D_ORIENT_CURSOR: {
BLI_strncpy(t->spacename, TIP_("cursor"), sizeof(t->spacename));
BKE_scene_cursor_rot_to_mat3(&t->scene->cursor, t->spacemtx);