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 21:39:19 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2009-09-09 21:39:19 +0400
commit9e7c4ce806b8d6dc532c40d5aeaa15dc708e2a10 (patch)
treec5f5e535222b2b5dd25e62dc5cbbc94be1052396 /release/ui/buttons_data_armature.py
parentd4a69283a60ae8f9e834f48ef7c2f3f68b51b73d (diff)
2.5: Layer Buttons
* Added RNA subtype for layers. * Shift-click works again. * uiItemR can now also handle armature/bone layers. * Also makes Move to Layer popup work as expected.
Diffstat (limited to 'release/ui/buttons_data_armature.py')
-rw-r--r--release/ui/buttons_data_armature.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/release/ui/buttons_data_armature.py b/release/ui/buttons_data_armature.py
index ff0cc531c67..5924a2eb4ea 100644
--- a/release/ui/buttons_data_armature.py
+++ b/release/ui/buttons_data_armature.py
@@ -42,9 +42,9 @@ class DATA_PT_skeleton(DataButtonsPanel):
col = split.column()
col.itemL(text="Layers:")
- col.template_layers(arm, "layer")
+ col.itemR(arm, "layer", text="")
col.itemL(text="Protected Layers:")
- col.template_layers(arm, "layer_protection")
+ col.itemR(arm, "layer_protection", text="")
col.itemL(text="Edit Options:")
col.itemR(arm, "x_axis_mirror")
col.itemR(arm, "auto_ik")