From ea993ae9890f6cbeca31ce74d09ae23ca3a600d6 Mon Sep 17 00:00:00 2001 From: Ton Roosendaal Date: Tue, 27 Jun 2006 11:35:47 +0000 Subject: [PATCH] Bugfix #4491 Sequencer: Image/Movie strips were printing in a 120 byte array, whilst filepaths and names can go up to 240 now. --- source/blender/src/drawseq.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;