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:
authorCampbell Barton <ideasman42@gmail.com>2010-08-25 04:34:40 +0400
committerCampbell Barton <ideasman42@gmail.com>2010-08-25 04:34:40 +0400
commitad405f0cb712f3ad2a13cf51581d76521e6bd7fb (patch)
treefd8e4211d66fd8a42e7d298f25d3590a6b98d9ce /release
parente7a1acb1f606a17699d9e0affa93c2e7258e6cf6 (diff)
remove rna function template_triColorSet(), was only used in one place and can be done just as well with 3 function calls.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/ui/properties_data_armature.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/release/scripts/ui/properties_data_armature.py b/release/scripts/ui/properties_data_armature.py
index 61c542fa550..c5748c45fb4 100644
--- a/release/scripts/ui/properties_data_armature.py
+++ b/release/scripts/ui/properties_data_armature.py
@@ -139,7 +139,10 @@ class DATA_PT_bone_groups(ArmatureButtonsPanel, bpy.types.Panel):
col.prop(group, "color_set")
if group.color_set:
col = split.column()
- col.template_triColorSet(group, "colors")
+ subrow = col.row(align=True)
+ subrow.prop(group.colors, "normal", text="")
+ subrow.prop(group.colors, "select", text="")
+ subrow.prop(group.colors, "active", text="")
row = layout.row()
row.active = (ob.proxy is None)