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:
authorJoseph Eagar <joeedh@gmail.com>2009-11-02 17:45:12 +0300
committerJoseph Eagar <joeedh@gmail.com>2009-11-02 17:45:12 +0300
commit7225c078b716f44fe0f482d56e88fabd5f635518 (patch)
tree46c2f6c516bb57039845255c058af1e47fd5c7ec /source/blender/editors
parente3a410d224380a82099cfd7e9f47074293df001b (diff)
bmesh compile fixes
Diffstat (limited to 'source/blender/editors')
-rw-r--r--source/blender/editors/mesh/bmeshutils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/mesh/bmeshutils.c b/source/blender/editors/mesh/bmeshutils.c
index beac07b6415..e5cda669438 100644
--- a/source/blender/editors/mesh/bmeshutils.c
+++ b/source/blender/editors/mesh/bmeshutils.c
@@ -561,7 +561,7 @@ static void *editbtMesh_to_undoMesh(void *emv)
undomesh *me = MEM_callocN(sizeof(undomesh), "undo Mesh");
/*make sure shape keys work*/
- me->me.key = em->me->key;
+ me->me.key = copy_key_nolib(em->me->key);
/*we recalc the tesselation here, to avoid seeding calls to
BMEdit_RecalcTesselation throughout the code.*/