From a1a7a65b4671fb0fb39080d0ee27a687a2f875ec Mon Sep 17 00:00:00 2001 From: Nicholas Bishop Date: Sun, 4 Feb 2007 00:42:23 +0000 Subject: == Retopo == Partial fix for bug #5766 * Moved the retopo call used during transforms to above the call to clip the transform (for the mirror modifier.) This stops retopo from moving a vertex across the axis. --- source/blender/src/transform_generics.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'source/blender/src/transform_generics.c') diff --git a/source/blender/src/transform_generics.c b/source/blender/src/transform_generics.c index c8f81a61177..5bf08c02255 100755 --- a/source/blender/src/transform_generics.c +++ b/source/blender/src/transform_generics.c @@ -219,6 +219,7 @@ void recalcData(TransInfo *t) if (G.obedit) { if (G.obedit->type == OB_MESH) { + retopo_do_all(); /* mirror modifier clipping? */ if(t->state != TRANS_CANCEL) @@ -226,8 +227,6 @@ void recalcData(TransInfo *t) if(G.scene->toolsettings->editbutflag & B_MESH_X_MIRROR) editmesh_apply_to_mirror(t); - - retopo_do_all(); DAG_object_flush_update(G.scene, G.obedit, OB_RECALC_DATA); /* sets recalc flags */ -- cgit v1.2.3