From d8c20fbb6628a40cd83f1ecac5d0838c07100b24 Mon Sep 17 00:00:00 2001 From: Bastien Montagne Date: Fri, 30 Jan 2015 12:48:49 +0100 Subject: Fix T43324: Shrinkwrap projection issue in editmode. Nice stupid error in low-level `get_cddm` helper, was probably affecting other modifiers too actualy! --- source/blender/modifiers/intern/MOD_util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/modifiers/intern') diff --git a/source/blender/modifiers/intern/MOD_util.c b/source/blender/modifiers/intern/MOD_util.c index 62a7ddefdf3..fe83166c09f 100644 --- a/source/blender/modifiers/intern/MOD_util.c +++ b/source/blender/modifiers/intern/MOD_util.c @@ -159,8 +159,8 @@ DerivedMesh *get_cddm(Object *ob, struct BMEditMesh *em, DerivedMesh *dm, float if (dm) { if (dm->type != DM_TYPE_CDDM) { dm = CDDM_copy(dm); - CDDM_apply_vert_coords(dm, vertexCos); } + CDDM_apply_vert_coords(dm, vertexCos); if (use_normals) { DM_ensure_normals(dm); -- cgit v1.2.3