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>2009-09-02 16:16:00 +0400
committerJoshua Leung <aligorith@gmail.com>2009-09-02 16:16:00 +0400
commit0415e3be054bd6ad742da786e01ec3edc81f9e78 (patch)
treefe246eb0971db5ea81f74acc68241f34c2b552aa /release
parent01b4caa701c21b88b4447d7d4fd5570b05fa5979 (diff)
2.5 - UI Bugfixes
* Modifiers for Lattices now get shown again * Auto IK and X-Axis Mirror options are now visible again in Armatures UI. Their placement isn't ideal yet, and they also need some proper poll-based visibility adjustments * F-Modifiers now correctly update the keyframes view after their settings are modified
Diffstat (limited to 'release')
-rw-r--r--release/ui/buttons_data_armature.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/release/ui/buttons_data_armature.py b/release/ui/buttons_data_armature.py
index ed350caa3bd..ff0cc531c67 100644
--- a/release/ui/buttons_data_armature.py
+++ b/release/ui/buttons_data_armature.py
@@ -45,6 +45,9 @@ class DATA_PT_skeleton(DataButtonsPanel):
col.template_layers(arm, "layer")
col.itemL(text="Protected Layers:")
col.template_layers(arm, "layer_protection")
+ col.itemL(text="Edit Options:")
+ col.itemR(arm, "x_axis_mirror")
+ col.itemR(arm, "auto_ik")
col = split.column()
col.itemR(arm, "rest_position")
@@ -53,8 +56,6 @@ class DATA_PT_skeleton(DataButtonsPanel):
col.itemR(arm, "deform_envelope", text="Envelopes")
col.itemR(arm, "deform_quaternion", text="Quaternion")
col.itemR(arm, "deform_bbone_rest", text="B-Bones Rest")
- #col.itemR(arm, "x_axis_mirror")
- #col.itemR(arm, "auto_ik")
class DATA_PT_display(DataButtonsPanel):
__label__ = "Display"