Fix #114434: Separate Images operator produces duplicate strips

Caused by typo - it has assigned `SEQ_SINGLE_FRAME_CONTENT` to `seq`,
while it should have been assigned to `seq_new`.
This commit is contained in:
Richard Antalik
2023-11-06 06:06:22 +01:00
parent 23e3f8f563
commit 0ca1e70de1

View File

@@ -1901,7 +1901,7 @@ static int sequencer_separate_images_exec(bContext *C, wmOperator *op)
seq_new->start = start_ofs;
seq_new->type = SEQ_TYPE_IMAGE;
seq_new->len = 1;
seq->flag |= SEQ_SINGLE_FRAME_CONTENT;
seq_new->flag |= SEQ_SINGLE_FRAME_CONTENT;
seq_new->endofs = 1 - step;
/* New strip. */