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:
authorCampbell Barton <ideasman42@gmail.com>2018-06-10 18:15:24 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-06-10 18:15:40 +0300
commitb23d5132a90a0e8360a20199c8e7bb45174987c4 (patch)
tree9094d66e7bdaf348d2e6767b896d4b714e8faf2e /release/scripts/startup/bl_ui/space_topbar.py
parent912931964723cb69dafd4adebe3daf093e3e78c1 (diff)
UI: Add redo last to edit-menu
Diffstat (limited to 'release/scripts/startup/bl_ui/space_topbar.py')
-rw-r--r--release/scripts/startup/bl_ui/space_topbar.py8
1 files changed, 6 insertions, 2 deletions
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()