Add Undo/Redo and Undo History to the History tab of the 3D View Toolbar

This commit is contained in:
Jonathan Williamson 2014-01-02 21:40:06 -06:00
parent addf274ce4
commit 8a3923107c

@ -318,8 +318,15 @@ 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 ****************
class VIEW3D_PT_tools_add_mesh_edit(View3DPanel, Panel):