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/blenkernel/BKE_action.h
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/blenkernel/BKE_action.h')
-rw-r--r--source/blender/blenkernel/BKE_action.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/BKE_action.h b/source/blender/blenkernel/BKE_action.h
index 527d85c7cf3..7df491c0fef 100644
--- a/source/blender/blenkernel/BKE_action.h
+++ b/source/blender/blenkernel/BKE_action.h
@@ -113,7 +113,7 @@ struct bActionGroup *get_active_actiongroup(struct bAction *act);
void set_active_action_group(struct bAction *act, struct bActionGroup *agrp, short select);
/* Sync colors used for action/bone group with theme settings */
-void action_group_colors_sync(struct bActionGroup *grp);
+void action_group_colors_sync(struct bActionGroup *grp, const struct bActionGroup *ref_grp);
/* Add a new action group with the given name to the action */
struct bActionGroup *action_groups_add_new(struct bAction *act, const char name[]);