Fix T37690: UI does not immediatelly reflect new length of effect strip

This commit is contained in:
Sergey Sharybin
2013-12-04 20:47:23 +06:00
parent 45fc80153a
commit 04e434cd81

View File

@@ -1601,6 +1601,15 @@ static int sequencer_cut_exec(bContext *C, wmOperator *op)
}
SEQ_END;
}
SEQP_BEGIN (ed, seq)
{
if (seq->seq1 || seq->seq2 || seq->seq3) {
BKE_sequence_calc(scene, seq);
}
}
SEQ_END;
/* as last: */
BKE_sequencer_sort(scene);
}