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:
authorWilliam Reynish <william@reynish.com>2009-12-03 19:28:50 +0300
committerWilliam Reynish <william@reynish.com>2009-12-03 19:28:50 +0300
commit18fb6d5e4366224440a0eca182b280b8b9ffb483 (patch)
treeb8478d276aea2a804d5fde336cf1e2bef4dad320 /release/scripts/ui/space_console.py
parent685d418f3a185a3e52fb84ba121c621e1017b623 (diff)
Added Toggle Full Screen and Duplicate Area to the menus of all the main spaces in Blender
Diffstat (limited to 'release/scripts/ui/space_console.py')
-rw-r--r--release/scripts/ui/space_console.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/release/scripts/ui/space_console.py b/release/scripts/ui/space_console.py
index 63e8055b148..a59c39d52ec 100644
--- a/release/scripts/ui/space_console.py
+++ b/release/scripts/ui/space_console.py
@@ -69,7 +69,11 @@ class CONSOLE_MT_console(bpy.types.Menu):
layout.operator("console.copy")
layout.operator("console.paste")
layout.menu("CONSOLE_MT_language")
-
+
+ layout.separator()
+
+ layout.operator("screen.area_dupli")
+ layout.operator("screen.screen_full_area")
class CONSOLE_MT_report(bpy.types.Menu):
bl_label = "Report"