move report/operator view out of the 'Console' into the 'Info' space (file menu).

Ton will work on moving the File menu out of the Info space before release.

notes.
- reply Operator isn't working anymore.
- UI for reports is commented out so its not mixed with the file menu.
This commit is contained in:
2010-11-11 13:36:57 +00:00
parent c1a74d9bd6
commit 43f396218f
25 changed files with 552 additions and 416 deletions

View File

@@ -110,9 +110,6 @@ def execute(context):
except:
return {'CANCELLED'}
if sc.console_type != 'PYTHON':
return {'CANCELLED'}
console, stdout, stderr = get_console(hash(context.region))
# redirect output
@@ -200,9 +197,6 @@ def autocomplete(context):
if not console:
return {'CANCELLED'}
if sc.console_type != 'PYTHON':
return {'CANCELLED'}
# dont allow the stdin to be used, can lock blender.
# note: unlikely stdin would be used for autocomp. but its possible.
stdin_backup = sys.stdin