[Bf-blender-cvs] [7320df2] master: Motion Paths: Show "Update" button in the toolbox too

Joshua Leung noreply at git.blender.org
Sun Feb 7 01:34:50 CET 2016


Commit: 7320df2e61cbf7abd652a7a4790a5e595a8c2a1a
Author: Joshua Leung
Date:   Sat Feb 6 13:09:59 2016 +1300
Branches: master
https://developer.blender.org/rB7320df2e61cbf7abd652a7a4790a5e595a8c2a1a

Motion Paths: Show "Update" button in the toolbox too

===================================================================

M	release/scripts/startup/bl_ui/space_view3d_toolbar.py

===================================================================

diff --git a/release/scripts/startup/bl_ui/space_view3d_toolbar.py b/release/scripts/startup/bl_ui/space_view3d_toolbar.py
index 7cff69f..691db5a 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):




More information about the Bf-blender-cvs mailing list