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
path: root/source
diff options
context:
space:
mode:
authorBastien Montagne <montagne29@wanadoo.fr>2018-08-16 16:46:40 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2018-08-16 16:49:00 +0300
commit7a7c579dd9367783de5f1ea1a2bba91572e3009a (patch)
tree8bb5992816a994b6c3ee2615b6b0c22c9b907d7a /source
parent1e7065516980a5ea40e5b757b52b704e053a5e43 (diff)
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... :/
Diffstat (limited to 'source')
-rw-r--r--source/blender/editors/curve/editcurve.c1
1 files changed, 1 insertions, 0 deletions
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) {