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>2008-01-20 16:52:54 +0300
committerCampbell Barton <ideasman42@gmail.com>2008-01-20 16:52:54 +0300
commit8ded57d23600c7a8a6025beee2b3b6e5e8978849 (patch)
tree7cdfa4163d6680b48f577a033c485305b522ff08 /source/blender/include
parent223b4132a0bd9ff7cb359ed5916c72b97b8a0a7b (diff)
Cant use WHILE_SEQ when drawing,
drawing strips was setting the depth that would then incorrectly overlap when used with metastrips. - so metastrisp would grow when moved - showed up in peach animatic. Now metastrips draw display differently- only immediate children are shown on the strip. Also disabled overlap checking during transform for non zero depth strips since its not needed.
Diffstat (limited to 'source/blender/include')
-rw-r--r--source/blender/include/BIF_editseq.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/include/BIF_editseq.h b/source/blender/include/BIF_editseq.h
index 1ed17cbf5de..cd1b80dfc65 100644
--- a/source/blender/include/BIF_editseq.h
+++ b/source/blender/include/BIF_editseq.h
@@ -103,8 +103,8 @@ void seq_tx_set_final_right(struct Sequence *seq, int i);
int seq_tx_check_left(struct Sequence *seq);
int seq_tx_check_right(struct Sequence *seq);
-#define SEQ_DEBUG_INFO(seq) printf("seq into '%s' -- len:%i start:%i startstill:%i endstill:%i startofs:%i endofs:%i\n",\
- seq->name, seq->len, seq->start, seq->startstill, seq->endstill, seq->startofs, seq->endofs)
+#define SEQ_DEBUG_INFO(seq) printf("seq into '%s' -- len:%i start:%i startstill:%i endstill:%i startofs:%i endofs:%i depth:%i\n",\
+ seq->name, seq->len, seq->start, seq->startstill, seq->endstill, seq->startofs, seq->endofs, seq->depth)
#endif