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
path: root/source
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2009-11-08 14:33:01 +0300
committerCampbell Barton <ideasman42@gmail.com>2009-11-08 14:33:01 +0300
commit49cb4d00657ef2e81d85cddda2e6dc9f9362c7c6 (patch)
tree988d3173d581850de20c71f8341159e0b16d5954 /source
parent18a5cd095ab83c73d4a719f1f70503603e7b1516 (diff)
support much longer prompts for the console
Diffstat (limited to 'source')
-rw-r--r--source/blender/makesdna/DNA_space_types.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesdna/DNA_space_types.h b/source/blender/makesdna/DNA_space_types.h
index 70db6b7a1ff..d2beab5daba 100644
--- a/source/blender/makesdna/DNA_space_types.h
+++ b/source/blender/makesdna/DNA_space_types.h
@@ -505,7 +505,7 @@ typedef struct SpaceConsole {
ListBase scrollback; /* ConsoleLine; output */
ListBase history; /* ConsoleLine; command history, current edited line is the first */
- char prompt[8];
+ char prompt[256];
char language[32]; /* multiple consoles are possible, not just python */
} SpaceConsole;