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>2016-02-06 03:09:59 +0300
committerJoshua Leung <aligorith@gmail.com>2016-02-07 03:32:12 +0300
commit7320df2e61cbf7abd652a7a4790a5e595a8c2a1a (patch)
treebc8a73cd08fb263491a7d0b221d760b3602b8dd3 /release
parent4e3d6725c4b1ac0e554aa5ff1cb6e151029b2d40 (diff)
Motion Paths: Show "Update" button in the toolbox too
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_view3d_toolbar.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/release/scripts/startup/bl_ui/space_view3d_toolbar.py b/release/scripts/startup/bl_ui/space_view3d_toolbar.py
index 7cff69f6964..691db5aa93c 100644
--- a/release/scripts/startup/bl_ui/space_view3d_toolbar.py
+++ b/release/scripts/startup/bl_ui/space_view3d_toolbar.py
@@ -249,6 +249,7 @@ class VIEW3D_PT_tools_animation(View3DPanel, Panel):
row = col.row(align=True)
row.operator("object.paths_calculate", text="Calculate")
row.operator("object.paths_clear", text="Clear")
+ col.operator("object.paths_update", text="Update")
col.separator()
@@ -775,6 +776,7 @@ class VIEW3D_PT_tools_posemode(View3DPanel, Panel):
row = col.row(align=True)
row.operator("pose.paths_calculate", text="Calculate")
row.operator("pose.paths_clear", text="Clear")
+ col.operator("pose.paths_update", text="Update")
class VIEW3D_PT_tools_posemode_options(View3DPanel, Panel):