From a8d11995bfcb16d2ecdfdb196e0ed708d8cf5c36 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 7 Jan 2020 13:49:10 +1100 Subject: BMesh: remove BMEditMesh.ob use for vert coord access, projection --- source/blender/editors/mesh/editmesh_extrude.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to '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 c1c8a208471..5496362024d 100644 --- a/source/blender/editors/mesh/editmesh_extrude.c +++ b/source/blender/editors/mesh/editmesh_extrude.c @@ -820,7 +820,7 @@ static int edbm_dupli_extrude_cursor_invoke(bContext *C, wmOperator *op, const w /* also project the source, for retopo workflow */ if (use_proj) { - EDBM_project_snap_verts(C, depsgraph, vc.ar, vc.em); + EDBM_project_snap_verts(C, depsgraph, vc.ar, vc.obedit, vc.em); } } @@ -853,7 +853,7 @@ static int edbm_dupli_extrude_cursor_invoke(bContext *C, wmOperator *op, const w } if (use_proj) { - EDBM_project_snap_verts(C, depsgraph, vc.ar, vc.em); + EDBM_project_snap_verts(C, depsgraph, vc.ar, vc.obedit, vc.em); } /* This normally happens when pushing undo but modal operators -- cgit v1.2.3