From 3237a56b5d2454573dab02d8de5b99b1a848f751 Mon Sep 17 00:00:00 2001 From: Joshua Leung Date: Fri, 3 Aug 2007 12:04:25 +0000 Subject: [PATCH] Bugfix #6983: Incorrect behavior of cancelling transform of IPO CVs Woops! The code was using the wrong variable in one place. --- source/blender/src/editipo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/src/editipo.c b/source/blender/src/editipo.c index 30d51f218a6..80590f335f4 100644 --- a/source/blender/src/editipo.c +++ b/source/blender/src/editipo.c @@ -4747,7 +4747,7 @@ void remake_ipo_transverts(TransVert *transmain, float *dvec, int tot) if (NLA_IPO_SCALED) { tv->oldloc[0] = get_action_frame_inv(OBACT, tv->loc[0]); tv->oldloc[0]-= dvec[0]; - tv->oldloc[0] = get_action_frame(OBACT, tv->loc[0]); + tv->oldloc[0] = get_action_frame(OBACT, tv->oldloc[0]); } else { tv->oldloc[0]= tv->loc[0]-dvec[0];