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:
authorCampbell Barton <ideasman42@gmail.com>2012-01-18 19:33:51 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-01-18 19:33:51 +0400
commit5eb569b69a1016aec14689051150e7a77973beeb (patch)
tree4fdd350ce83d70c3fa62a7e72246368b0f5efa05 /source/blender/modifiers/intern/MOD_util.c
parentad3e9900d6219aa84f91c7ff30ee48b7253ca0f1 (diff)
dissable editmode tessface creation in 'get_dm' looked over uses and all that use editmode data are deform modifiers.
Diffstat (limited to 'source/blender/modifiers/intern/MOD_util.c')
-rw-r--r--source/blender/modifiers/intern/MOD_util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/modifiers/intern/MOD_util.c b/source/blender/modifiers/intern/MOD_util.c
index e9b60f33fa2..f8386f6e408 100644
--- a/source/blender/modifiers/intern/MOD_util.c
+++ b/source/blender/modifiers/intern/MOD_util.c
@@ -185,7 +185,7 @@ DerivedMesh *get_dm(Object *ob, struct BMEditMesh *em, DerivedMesh *dm, float (*
return dm;
if(ob->type==OB_MESH) {
- if(em) dm= CDDM_from_BMEditMesh(em, ob->data, FALSE, TRUE);
+ if(em) dm= CDDM_from_BMEditMesh(em, ob->data, FALSE, FALSE);
else dm = CDDM_from_mesh((struct Mesh *)(ob->data), ob);
if(vertexCos) {