[Bf-blender-cvs] [0da38ad] master: Operator that sets proxies needs to cater for all supported strip types

Antony Riakiotakis noreply at git.blender.org
Fri Jan 30 16:10:02 CET 2015


Commit: 0da38ada07946d2e2fc0caadf36550a1bdf4969f
Author: Antony Riakiotakis
Date:   Fri Jan 30 16:09:55 2015 +0100
Branches: master
https://developer.blender.org/rB0da38ada07946d2e2fc0caadf36550a1bdf4969f

Operator that sets proxies needs to cater for all supported strip types

===================================================================

M	source/blender/editors/space_sequencer/sequencer_edit.c

===================================================================

diff --git a/source/blender/editors/space_sequencer/sequencer_edit.c b/source/blender/editors/space_sequencer/sequencer_edit.c
index 9246667..489265a 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)




More information about the Bf-blender-cvs mailing list