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-20 15:21:44 +0400
committerJoshua Leung <aligorith@gmail.com>2009-09-20 15:21:44 +0400
commitad25fc829e736be4bbf2e2a125347eda294fdac9 (patch)
tree40f148482c2248c613f1302dcf00201a4795ce94 /release/ui
parent2c871f722d3cbc80c9f076d7c23137e19633ba3a (diff)
2.5 - More animation/rigging bugfixes
* #19419: PoseLib rename/remove tools could crash when an invalid (However, now care is needed when touching that index field, since the warnings can keep piling up) * Added Browse Poses for PoseLib to the toolbar * Removing constraints from bones now properly updates. A DAG rebuild is now forced, and the constraint flags are cleared. * Attempting to improve the situation with Copy Rotation constraint and rotation orders other than xyz. Unforunately, it looks like a different method is required...
Diffstat (limited to 'release/ui')
-rw-r--r--release/ui/space_view3d_toolbar.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/release/ui/space_view3d_toolbar.py b/release/ui/space_view3d_toolbar.py
index 415a3e223bb..239a727d2a2 100644
--- a/release/ui/space_view3d_toolbar.py
+++ b/release/ui/space_view3d_toolbar.py
@@ -277,8 +277,6 @@ class VIEW3D_PT_tools_posemode(View3DPanel):
def draw(self, context):
layout = self.layout
-
-
col = layout.column(align=True)
col.itemL(text="Transform:")
col.itemO("tfm.translate")
@@ -299,7 +297,8 @@ class VIEW3D_PT_tools_posemode(View3DPanel):
col.itemL(text="Pose:")
col.itemO("pose.copy", text="Copy")
col.itemO("pose.paste", text="Paste")
- col.itemO("poselib.pose_add", text="Add To library")
+ col.itemO("poselib.pose_add", text="Add To Library")
+ col.itemO("poselib.browse_interactive", text="Browse Library")
col = layout.column(align=True)
col.itemL(text="In-Between:")