From 7a7c579dd9367783de5f1ea1a2bba91572e3009a Mon Sep 17 00:00:00 2001 From: Bastien Montagne Date: Thu, 16 Aug 2018 15:46:40 +0200 Subject: Fix T56404: Shape keys of the curves with multiple splines go haywire in edit mode. Very dummy mistake (someone forgot to increment one of the variables in one of the loops in that spaghetti nightmare that is nurbs shapekey code), took half an age to spot it... :/ --- source/blender/editors/curve/editcurve.c | 1 + 1 file changed, 1 insertion(+) (limited to 'source/blender/editors/curve/editcurve.c') diff --git a/source/blender/editors/curve/editcurve.c b/source/blender/editors/curve/editcurve.c index 8dd811c3df7..b046e1b6ae7 100644 --- a/source/blender/editors/curve/editcurve.c +++ b/source/blender/editors/curve/editcurve.c @@ -840,6 +840,7 @@ static void calc_shapeKeys(Object *obedit, ListBase *newnurbs) } nu = nu->next; + newnu = newnu->next; } if (apply_offset) { -- cgit v1.2.3