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:
authorPablo Vazquez <venomgfx@gmail.com>2018-06-03 00:13:03 +0300
committerPablo Vazquez <venomgfx@gmail.com>2018-06-03 00:13:03 +0300
commit18a45538384564a5dffbdd88b778bb10da92a7b2 (patch)
tree83b98f5993eb8b65c2329134ade33e06023b15d5 /release
parent04d9316cf362f6d0c5fa9ed38aa3d0c6419ccf4e (diff)
Edit menu: add Repeat Last and Repeat History
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_topbar.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/release/scripts/startup/bl_ui/space_topbar.py b/release/scripts/startup/bl_ui/space_topbar.py
index 243b36bdeb7..7beb97f31b6 100644
--- a/release/scripts/startup/bl_ui/space_topbar.py
+++ b/release/scripts/startup/bl_ui/space_topbar.py
@@ -610,6 +610,11 @@ class INFO_MT_edit(Menu):
layout.separator()
+ layout.operator("screen.repeat_last")
+ layout.operator("screen.repeat_history")
+
+ layout.separator()
+
layout.operator("screen.userpref_show", text="User Preferences...", icon='PREFERENCES')