Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicholas Bishop <nicholasbishop@gmail.com>2007-02-04 03:42:23 +0300
committerNicholas Bishop <nicholasbishop@gmail.com>2007-02-04 03:42:23 +0300
commita1a7a65b4671fb0fb39080d0ee27a687a2f875ec (patch)
treec531e2127ddaa7a9d81fc6f18fd4555d8e1a7503 /source/blender/src/transform_generics.c
parent38d71bded68118275940c6a98dac11437675d250 (diff)
== 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.
Diffstat (limited to 'source/blender/src/transform_generics.c')
-rwxr-xr-xsource/blender/src/transform_generics.c3
1 files changed, 1 insertions, 2 deletions
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 */