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:
Diffstat (limited to 'release/scripts/startup/bl_ui/space_topbar.py')
-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 06bdc9ee59e..ce4a1ad8c74 100644
--- a/release/scripts/startup/bl_ui/space_topbar.py
+++ b/release/scripts/startup/bl_ui/space_topbar.py
@@ -613,6 +613,11 @@ class TOPBAR_MT_workspace_menu(Menu):
if len(bpy.data.workspaces) > 1:
layout.operator("workspace.delete", text="Delete")
+ layout.separator()
+
+ layout.operator("workspace.reorder_to_front", text="Reorder to Front")
+ layout.operator("workspace.reorder_to_back", text="Reorder to Back")
+
class TOPBAR_PT_active_tool(Panel):
bl_space_type = 'PROPERTIES'