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:
authorCampbell Barton <ideasman42@gmail.com>2009-07-26 08:31:46 +0400
committerCampbell Barton <ideasman42@gmail.com>2009-07-26 08:31:46 +0400
commita934773475182feeddc4dd208dc5222975d9206a (patch)
treee7fc3c86507573791f38221827bebdb1b428af1c /release
parent117fdd8072fb6b8390d85498d8185c55a81f40e8 (diff)
- console scrollback userpref
- copy coperator for the console (Ctrl+C and from the menu)
Diffstat (limited to 'release')
-rw-r--r--release/ui/space_console.py1
-rw-r--r--release/ui/space_info.py1
2 files changed, 2 insertions, 0 deletions
diff --git a/release/ui/space_console.py b/release/ui/space_console.py
index 08695569748..cf5727cd3a2 100644
--- a/release/ui/space_console.py
+++ b/release/ui/space_console.py
@@ -50,6 +50,7 @@ class CONSOLE_MT_console(bpy.types.Menu):
layout.column()
layout.itemO("console.clear")
+ layout.itemO("console.copy")
class CONSOLE_MT_report(bpy.types.Menu):
__space_type__ = "CONSOLE"
diff --git a/release/ui/space_info.py b/release/ui/space_info.py
index 365bcada6b9..9e94be9b746 100644
--- a/release/ui/space_info.py
+++ b/release/ui/space_info.py
@@ -432,6 +432,7 @@ class INFO_PT_system(bpy.types.Panel):
colsplitcol.itemR(system, "filter_file_extensions")
colsplitcol.itemR(system, "hide_dot_files_datablocks")
colsplitcol.itemR(system, "audio_mixing_buffer")
+ colsplitcol.itemR(lan, "scrollback", text="Console Scrollback")
col = split.column()
colsplit = col.split(percentage=0.85)