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:
authorJonathan Williamson <jonathan@cgcookie.com>2014-01-03 07:40:06 +0400
committerJonathan Williamson <jonathan@cgcookie.com>2014-01-04 01:28:18 +0400
commit8a3923107c7bf09c834222504ee33279d9e326fc (patch)
treea3eb4c2e80e14f97d8997a754b03d150cf914c77 /release
parentaddf274ce441f2bcfdea6ca49d77b17bbd2047db (diff)
Add Undo/Redo and Undo History to the History tab of the 3D View Toolbar
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 ****************