Commit: d3ec3fd9689d089eb65c832e7f10fc55b6ec1918
Author: Campbell Barton
Date:   Sat Mar 1 15:40:20 2014 +1100
https://developer.blender.org/rBd3ec3fd9689d089eb65c832e7f10fc55b6ec1918

Fix Snap to Symmetry failing to select the vertex from the right side

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

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

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

diff --git a/source/blender/editors/mesh/editmesh_tools.c 
b/source/blender/editors/mesh/editmesh_tools.c
index d67728e..19480f7 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);
                                        }

_______________________________________________
Bf-blender-cvs mailing list
[email protected]
http://lists.blender.org/mailman/listinfo/bf-blender-cvs

Reply via email to