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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2008-02-21 19:57:58 +0300
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2008-02-21 19:57:58 +0300
commit0d9c6ea649e6e6118afba29e536152f160bf8217 (patch)
tree4427d0b28ff536ca4f971fe5680f8f437564e389 /source/blender/src/editmesh.c
parent835624fa050362728f4b8dc6a17a25ca89984be3 (diff)
Fix for bug #6769: lattice editmode undo gave corrupt data
if the lattice resolution changed.
Diffstat (limited to 'source/blender/src/editmesh.c')
-rw-r--r--source/blender/src/editmesh.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/src/editmesh.c b/source/blender/src/editmesh.c
index ee7c73264e3..de4bcda157f 100644
--- a/source/blender/src/editmesh.c
+++ b/source/blender/src/editmesh.c
@@ -2235,7 +2235,7 @@ static void undoMesh_to_editMesh(void *umv)
/* and this is all the undo system needs to know */
void undo_push_mesh(char *name)
{
- undo_editmode_push(name, free_undoMesh, undoMesh_to_editMesh, editMesh_to_undoMesh);
+ undo_editmode_push(name, free_undoMesh, undoMesh_to_editMesh, editMesh_to_undoMesh, NULL);
}