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>2011-06-20 07:10:02 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-06-20 07:10:02 +0400
commit4ce97c5ed4a95a555a21c0e2dd1b909409f35a8d (patch)
tree4586535165fc2f0692e48c97cd4df0040e44bccd /source/blender/editors/space_console
parent97a85fe1000b727e0b6c04e0978e22d986125358 (diff)
changes to startup.blend
- enable manipulator option, applies to new 3d views (not sure why it was disabled) - reported in [#27664] - remove rigify and netrender scene ID properties - set console scrollback to 256, was 128 which could sometimes cut off output of help() - enabled syntax highlighting and line number in the text editor for game logic and python screens
Diffstat (limited to 'source/blender/editors/space_console')
-rw-r--r--source/blender/editors/space_console/console_ops.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_console/console_ops.c b/source/blender/editors/space_console/console_ops.c
index 97c2d9e3eb4..3effea296d7 100644
--- a/source/blender/editors/space_console/console_ops.c
+++ b/source/blender/editors/space_console/console_ops.c
@@ -84,7 +84,7 @@ static void console_scrollback_limit(SpaceConsole *sc)
{
int tot;
- if (U.scrollback < 32) U.scrollback= 128; // XXX - save in user defaults
+ if (U.scrollback < 32) U.scrollback= 256; // XXX - save in user defaults
for(tot= BLI_countlist(&sc->scrollback); tot > U.scrollback; tot--)
console_scrollback_free(sc, sc->scrollback.first);