[Bf-blender-cvs] [cb909afa12e] blender2.8: Correct last commit

Campbell Barton noreply at git.blender.org
Sat Sep 8 05:13:13 CEST 2018


Commit: cb909afa12edb074ab02f2de4e40ea8e963b583d
Author: Campbell Barton
Date:   Sat Sep 8 13:22:34 2018 +1000
Branches: blender2.8
https://developer.blender.org/rBcb909afa12edb074ab02f2de4e40ea8e963b583d

Correct last commit

===================================================================

M	source/blender/editors/mesh/editmesh_extrude.c

===================================================================

diff --git a/source/blender/editors/mesh/editmesh_extrude.c b/source/blender/editors/mesh/editmesh_extrude.c
index 6bcf91038e9..d54437913f4 100644
--- a/source/blender/editors/mesh/editmesh_extrude.c
+++ b/source/blender/editors/mesh/editmesh_extrude.c
@@ -651,7 +651,7 @@ static void gizmo_mesh_extrude_draw_prepare(const bContext *C, wmGizmoGroup *gzg
 	{
 		RegionView3D *rv3d = CTX_wm_region_view3d(C);
 		LISTBASE_FOREACH (wmGizmo *, gz, &gzgroup->gizmos) {
-			gz->temp.f = dot_v3v3(rv3d->viewinv[2], gz->matrix_offset[3]);
+			gz->temp.f = -dot_v3v3(rv3d->viewinv[2], gz->matrix_offset[3]);
 		}
 		BLI_listbase_sort(&gzgroup->gizmos, gizmo_cmp_temp_f);
 	}



More information about the Bf-blender-cvs mailing list