[Bf-blender-cvs] [3f0d785d23b] master: Fix T90658: selection of some 3D gizmos failing

Germano Cavalcante noreply at git.blender.org
Sun Aug 15 22:55:22 CEST 2021


Commit: 3f0d785d23bf246abcb6f9cf86e106cdc9ac3636
Author: Germano Cavalcante
Date:   Sun Aug 15 17:54:59 2021 -0300
Branches: master
https://developer.blender.org/rB3f0d785d23bf246abcb6f9cf86e106cdc9ac3636

Fix T90658: selection of some 3D gizmos failing

Small error due to wrong variable usage.

Introduced in rBfcd2d63b644e.

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

M	source/blender/windowmanager/gizmo/intern/wm_gizmo_map.c

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

diff --git a/source/blender/windowmanager/gizmo/intern/wm_gizmo_map.c b/source/blender/windowmanager/gizmo/intern/wm_gizmo_map.c
index b90e288776e..6f6a2402d89 100644
--- a/source/blender/windowmanager/gizmo/intern/wm_gizmo_map.c
+++ b/source/blender/windowmanager/gizmo/intern/wm_gizmo_map.c
@@ -627,7 +627,7 @@ static int gizmo_find_intersected_3d_intern(wmGizmo **visible_gizmos,
       wmGizmo *gz = visible_gizmos[buf_iter[3] >> 8];
       float co_3d[3];
       co_screen[2] = int_as_float(buf_iter[1]);
-      GPU_matrix_unproject_3fv(co_screen, rv3d->viewinv, rv3d->winmat, viewport, co_3d_origin);
+      GPU_matrix_unproject_3fv(co_screen, rv3d->viewinv, rv3d->winmat, viewport, co_3d);
       float select_bias = gz->select_bias;
       if ((gz->flag & WM_GIZMO_DRAW_NO_SCALE) == 0) {
         select_bias *= gz->scale_final;



More information about the Bf-blender-cvs mailing list