== Sequencer ==

Fixed silly bug, that activated proxies at the wrong time.
This commit is contained in:
2011-09-11 21:46:24 +00:00
parent 8167d8c2f1
commit 8f9fa6a400

View File

@@ -1260,7 +1260,7 @@ static struct ImBuf * seq_proxy_fetch(SeqRenderData context, Sequence * seq, int
size_flags = seq->strip->proxy->build_size_flags;
/* only use proxies, if they are enabled (even if present!) */
if (psize != IMB_PROXY_NONE && ((size_flags & psize) != psize)) {
if (psize == IMB_PROXY_NONE || ((size_flags & psize) != psize)) {
return NULL;
}