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:
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_view3d_toolbar.py9
1 files changed, 8 insertions, 1 deletions
diff --git a/release/scripts/startup/bl_ui/space_view3d_toolbar.py b/release/scripts/startup/bl_ui/space_view3d_toolbar.py
index f39c616d5c9..bba4ad1d3a9 100644
--- a/release/scripts/startup/bl_ui/space_view3d_toolbar.py
+++ b/release/scripts/startup/bl_ui/space_view3d_toolbar.py
@@ -271,7 +271,7 @@ class VIEW3D_PT_tools_animation(View3DPanel, Panel):
row.operator("object.paths_clear", text="Clear")
col.separator()
-
+
col.label(text="Action:")
col.operator("nla.bake", text="Bake Action")
@@ -318,7 +318,14 @@ class VIEW3D_PT_tools_objectmode(View3DPanel, Panel):
def draw(self, context):
layout = self.layout
+ col = layout.column(align=True)
+ row = col.row(align=True)
+ row.operator("ed.undo")
+ row.operator("ed.redo")
+ col.operator("ed.undo_history")
+
draw_repeat_tools(context, layout)
+
# ********** default tools for editmode_mesh ****************