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

This commit is contained in:
Campbell Barton 2014-03-01 15:40:20 +11:00
parent 3b5ea6b972
commit d3ec3fd968
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}