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:
authorNathan Letwory <nathan@letworyinteractive.com>2010-10-19 02:37:21 +0400
committerNathan Letwory <nathan@letworyinteractive.com>2010-10-19 02:37:21 +0400
commitb743454ce1c361e6161da8ae5f840c2befe3a081 (patch)
treebfbe6b9daafa044e10ca3075b57c5505c0a01283
parentf08a9dfd8a9b7d6ba10d764f087c5bbd3ff1013d (diff)
Add Toggle System Console entry to Help menu on Windows systems.
-rw-r--r--release/scripts/ui/space_info.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/release/scripts/ui/space_info.py b/release/scripts/ui/space_info.py
index b0e8dbab0b3..d9ddc4a470b 100644
--- a/release/scripts/ui/space_info.py
+++ b/release/scripts/ui/space_info.py
@@ -347,6 +347,9 @@ class INFO_MT_help(bpy.types.Menu):
layout.operator("help.operator_cheat_sheet", icon='TEXT')
layout.operator("wm.sysinfo", icon='TEXT')
layout.separator()
+ if bpy.app.build_platform[0:7] == 'Windows':
+ layout.operator("wm.toggle_console", icon='CONSOLE')
+ layout.separator()
layout.operator("anim.update_data_paths", text="FCurve/Driver 2.54 fix", icon='HELP')
layout.separator()
layout.operator("wm.splash")