UI: Add redo last to edit-menu

This commit is contained in:
Campbell Barton 2018-06-10 17:15:24 +02:00
parent 9129319647
commit b23d5132a9
1 changed files with 6 additions and 2 deletions

View File

@ -606,12 +606,16 @@ class INFO_MT_edit(Menu):
layout.separator()
layout.operator("ed.undo_history")
layout.operator("ed.undo_history", text="Undo History...")
layout.separator()
layout.operator("screen.repeat_last")
layout.operator("screen.repeat_history")
layout.operator("screen.repeat_history", text="Repeat History...")
layout.separator()
layout.operator("screen.redo_last", text="Adjust Last Operation...")
layout.separator()