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:
authorAntony Riakiotakis <kalast@gmail.com>2015-01-30 18:09:55 +0300
committerAntony Riakiotakis <kalast@gmail.com>2015-01-30 18:09:55 +0300
commit0da38ada07946d2e2fc0caadf36550a1bdf4969f (patch)
tree1698529a43b223bcbc82aa60da4d663a59cfe63b /source/blender/editors/space_sequencer/sequencer_edit.c
parentb58b182753e50aa10a1e5c7d152d5787aae433e0 (diff)
Operator that sets proxies needs to cater for all supported strip types
Diffstat (limited to 'source/blender/editors/space_sequencer/sequencer_edit.c')
-rw-r--r--source/blender/editors/space_sequencer/sequencer_edit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_sequencer/sequencer_edit.c b/source/blender/editors/space_sequencer/sequencer_edit.c
index 9246667a427..489265a83f4 100644
--- a/source/blender/editors/space_sequencer/sequencer_edit.c
+++ b/source/blender/editors/space_sequencer/sequencer_edit.c
@@ -3434,7 +3434,7 @@ static int sequencer_enable_proxies_exec(bContext *C, wmOperator *op)
SEQP_BEGIN(ed, seq)
{
if ((seq->flag & SELECT)) {
- if (seq->type == SEQ_TYPE_MOVIE) {
+ if (ELEM(seq->type, SEQ_TYPE_MOVIE, SEQ_TYPE_IMAGE, SEQ_TYPE_META, SEQ_TYPE_SCENE, SEQ_TYPE_MULTICAM)) {
BKE_sequencer_proxy_set(seq, turnon);
if (proxy_25)