From 79224961836db454b454f20479a76b83e3eed3bc Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 24 Oct 2007 13:12:07 +0000 Subject: ==Sequencer== added an option to reload selected strip data (Alt+R - same as reloading images in the imaeg viewer) made the sequencer max memory limit 16gig for 64bit's. --- source/blender/src/editseq.c | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'source/blender/src/editseq.c') diff --git a/source/blender/src/editseq.c b/source/blender/src/editseq.c index 87b963a0bd7..88705404965 100644 --- a/source/blender/src/editseq.c +++ b/source/blender/src/editseq.c @@ -1987,6 +1987,19 @@ void change_sequence(void) } +void reload_sequence(void) +{ + Editing *ed= G.scene->ed; + Sequence *seq; + WHILE_SEQ(ed->seqbasep) { + if(seq->flag & SELECT) { + update_changed_seq_and_deps(seq, 0, 1); + } + } + END_SEQ + allqueue(REDRAWSEQ, 0); +} + void reassign_inputs_seq_effect() { Editing *ed= G.scene->ed; -- cgit v1.2.3