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:
authorSergey Sharybin <sergey.vfx@gmail.com>2014-02-20 11:36:07 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2014-02-20 11:36:07 +0400
commit361fc09792f12b2efc164e5e4d16789f7659d871 (patch)
tree896aa68bded5b016b3d83e3c96c30fb52c2d9604
parent10f4c6278390958703731eacfd5f724a34905d51 (diff)
Allow using strips from the top of the stack as modifier arguments
Poll function tried to be smart and disallow having dependency cycles, but it didn't work properly. Further, it still possible to re-shuffle strips stack in the way which introduces dependency cycles. So disabled this smartness in the poll function for now.
-rw-r--r--source/blender/makesrna/intern/rna_sequencer.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/source/blender/makesrna/intern/rna_sequencer.c b/source/blender/makesrna/intern/rna_sequencer.c
index 689406fd777..2506f57da43 100644
--- a/source/blender/makesrna/intern/rna_sequencer.c
+++ b/source/blender/makesrna/intern/rna_sequencer.c
@@ -996,9 +996,6 @@ static int rna_SequenceModifier_otherSequence_poll(PointerRNA *ptr, PointerRNA v
if (seq == cur)
return FALSE;
- if (BKE_sequence_check_depend(seq, cur))
- return FALSE;
-
return TRUE;
}