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:
authorJoshua Leung <aligorith@gmail.com>2012-07-03 05:15:03 +0400
committerJoshua Leung <aligorith@gmail.com>2012-07-03 05:15:03 +0400
commitf977da407b9229099da73ae71d51d0f3355132b1 (patch)
tree0fa2a6e6732d6d094e2fa76887333fed87026e28 /source/blender/editors/animation
parent4aa43a0bfdc9c5172ae7cceb68f81627fac4558e (diff)
Bugfix [#31976] Bone Group Custom color set is not respected when creating an
Action Custom color set colors were not getting copied over when creating new action groups. Instead, a "default set" was initialised for use instead.
Diffstat (limited to 'source/blender/editors/animation')
-rw-r--r--source/blender/editors/animation/keyframing.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/animation/keyframing.c b/source/blender/editors/animation/keyframing.c
index 6250424d655..267746d5b91 100644
--- a/source/blender/editors/animation/keyframing.c
+++ b/source/blender/editors/animation/keyframing.c
@@ -201,7 +201,7 @@ FCurve *verify_fcurve(bAction *act, const char group[], PointerRNA *ptr,
grp = (bActionGroup *)BLI_findlink(&pose->agroups, (pchan->agrp_index - 1));
if (grp) {
agrp->customCol = grp->customCol;
- action_group_colors_sync(agrp);
+ action_group_colors_sync(agrp, grp);
}
}
}