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:
authorCampbell Barton <ideasman42@gmail.com>2007-10-24 17:12:07 +0400
committerCampbell Barton <ideasman42@gmail.com>2007-10-24 17:12:07 +0400
commit79224961836db454b454f20479a76b83e3eed3bc (patch)
treef38ec7789f92c747ce510700c61df0c540ce32c0 /source/blender/src/editseq.c
parenta9110ee0333b5dfc8af42919e53c7cd35e1f6cb1 (diff)
==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.
Diffstat (limited to 'source/blender/src/editseq.c')
-rw-r--r--source/blender/src/editseq.c13
1 files changed, 13 insertions, 0 deletions
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;