From 8a3923107c7bf09c834222504ee33279d9e326fc Mon Sep 17 00:00:00 2001 From: Jonathan Williamson Date: Thu, 2 Jan 2014 21:40:06 -0600 Subject: Add Undo/Redo and Undo History to the History tab of the 3D View Toolbar --- release/scripts/startup/bl_ui/space_view3d_toolbar.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'release') 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 **************** -- cgit v1.2.3