Commit: b23d5132a90a0e8360a20199c8e7bb45174987c4
Author: Campbell Barton
Date:   Sun Jun 10 17:15:24 2018 +0200
Branches: blender2.8
https://developer.blender.org/rBb23d5132a90a0e8360a20199c8e7bb45174987c4

UI: Add redo last to edit-menu

===================================================================

M       release/scripts/startup/bl_ui/space_topbar.py

===================================================================

diff --git a/release/scripts/startup/bl_ui/space_topbar.py 
b/release/scripts/startup/bl_ui/space_topbar.py
index c231d05ecdb..0171d98af0b 100644
--- a/release/scripts/startup/bl_ui/space_topbar.py
+++ b/release/scripts/startup/bl_ui/space_topbar.py
@@ -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()

_______________________________________________
Bf-blender-cvs mailing list
[email protected]
https://lists.blender.org/mailman/listinfo/bf-blender-cvs

Reply via email to