From 361fc09792f12b2efc164e5e4d16789f7659d871 Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Thu, 20 Feb 2014 13:36:07 +0600 Subject: 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. --- source/blender/makesrna/intern/rna_sequencer.c | 3 --- 1 file changed, 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; } -- cgit v1.2.3