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:
authorTon Roosendaal <ton@blender.org>2006-06-27 15:35:47 +0400
committerTon Roosendaal <ton@blender.org>2006-06-27 15:35:47 +0400
commitea993ae9890f6cbeca31ce74d09ae23ca3a600d6 (patch)
tree7888cdb12df6b8d9644d57ba1853f089642f9ee0
parentd87b12a865c6658f4fbc663ff6e8229062f3a093 (diff)
Bugfix #4491
Sequencer: Image/Movie strips were printing in a 120 byte array, whilst filepaths and names can go up to 240 now.
-rw-r--r--source/blender/src/drawseq.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/src/drawseq.c b/source/blender/src/drawseq.c
index 08a9f196012..e96b31f1edc 100644
--- a/source/blender/src/drawseq.c
+++ b/source/blender/src/drawseq.c
@@ -545,7 +545,7 @@ static void draw_seq_text(Sequence *seq, float x1, float x2, float y1, float y2)
{
float v1[2], v2[2];
int len, size;
- char str[120], *strp;
+ char str[32 + FILE_MAXDIR+FILE_MAXFILE], *strp;
short mval[2];
v1[1]= y1;