From d3ec3fd9689d089eb65c832e7f10fc55b6ec1918 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sat, 1 Mar 2014 15:40:20 +1100 Subject: Fix Snap to Symmetry failing to select the vertex from the right side --- source/blender/editors/mesh/editmesh_tools.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/editors/mesh/editmesh_tools.c b/source/blender/editors/mesh/editmesh_tools.c index d67728e81a8..19480f7d9d7 100644 --- a/source/blender/editors/mesh/editmesh_tools.c +++ b/source/blender/editors/mesh/editmesh_tools.c @@ -4930,7 +4930,7 @@ static int mesh_symmetry_snap_exec(bContext *C, wmOperator *op) if (v != v_mirr) { float co[3], co_mirr[3]; - if ((v->co[axis] > v->co[axis]) == axis_sign) { + if ((v->co[axis] > v_mirr->co[axis]) == axis_sign) { SWAP(BMVert *, v, v_mirr); } -- cgit v1.2.3