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/editmball.c
parent835624fa050362728f4b8dc6a17a25ca89984be3 (diff)
Fix for bug #6769: lattice editmode undo gave corrupt data
if the lattice resolution changed.
Diffstat (limited to 'source/blender/src/editmball.c')
-rw-r--r--source/blender/src/editmball.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/src/editmball.c b/source/blender/src/editmball.c
index 71fbf834c17..10ef8756ebf 100644
--- a/source/blender/src/editmball.c
+++ b/source/blender/src/editmball.c
@@ -494,7 +494,7 @@ static void free_undoMball(void *lbv)
/* this is undo system for MetaBalls */
void undo_push_mball(char *name)
{
- undo_editmode_push(name, free_undoMball, undoMball_to_editMball, editMball_to_undoMball);
+ undo_editmode_push(name, free_undoMball, undoMball_to_editMball, editMball_to_undoMball, NULL);
}
/* Hide selected/unselected MetaElems */