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/editcurve.c
parent835624fa050362728f4b8dc6a17a25ca89984be3 (diff)
Fix for bug #6769: lattice editmode undo gave corrupt data
if the lattice resolution changed.
Diffstat (limited to 'source/blender/src/editcurve.c')
-rw-r--r--source/blender/src/editcurve.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/src/editcurve.c b/source/blender/src/editcurve.c
index 8d845c4ba14..aef4d16e5e1 100644
--- a/source/blender/src/editcurve.c
+++ b/source/blender/src/editcurve.c
@@ -4624,7 +4624,7 @@ static void free_undoCurve(void *lbv)
/* and this is all the undo system needs to know */
void undo_push_curve(char *name)
{
- undo_editmode_push(name, free_undoCurve, undoCurve_to_editCurve, editCurve_to_undoCurve);
+ undo_editmode_push(name, free_undoCurve, undoCurve_to_editCurve, editCurve_to_undoCurve, NULL);
}