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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2009-09-09 15:05:10 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2009-09-09 15:05:10 +0400
commitb9f1117336e17438cab1db6174f7cf66eebc6b3e (patch)
treea21e1c9098bfce090af03448149184c18a997144
parentc29780c12a2eeb53e905c5a5c38a4a5c226738a3 (diff)
2.5: use bone groups icon in UI.
-rw-r--r--source/blender/makesrna/intern/rna_pose.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/makesrna/intern/rna_pose.c b/source/blender/makesrna/intern/rna_pose.c
index 6c2018c61f4..7d7f37a8f43 100644
--- a/source/blender/makesrna/intern/rna_pose.c
+++ b/source/blender/makesrna/intern/rna_pose.c
@@ -386,6 +386,7 @@ static void rna_def_bone_group(BlenderRNA *brna)
srna= RNA_def_struct(brna, "BoneGroup", NULL);
RNA_def_struct_sdna(srna, "bActionGroup");
RNA_def_struct_ui_text(srna, "Bone Group", "Groups of Pose Channels (Bones).");
+ RNA_def_struct_ui_icon(srna, ICON_GROUP_BONE);
/* name */
prop= RNA_def_property(srna, "name", PROP_STRING, PROP_NONE);