Fix T85970: Incorrect scaling of meta strips

This is same issue as fixed by d857892553, but I forgot to check meta
strips. Meta strip output is always in render size.

Reviewed By: sergey

Differential Revision: https://developer.blender.org/D10560
This commit is contained in:
Richard Antalik 2021-03-02 12:20:16 +01:00
parent 88604b79b7
commit 3059c0b386
Notes: blender-bot 2023-02-14 02:45:41 +01:00
Referenced by issue #85970, VSE Preview breaks when using Metastrips, the new Transform tools, and proxies
Referenced by issue #85958, Potential candidates for corrective releases
1 changed files with 1 additions and 0 deletions

View File

@ -583,6 +583,7 @@ static bool seq_need_scale_to_render_size(const Sequence *seq, bool is_proxy_ima
return true;
}
if ((seq->type & SEQ_TYPE_EFFECT) != 0 || seq->type == SEQ_TYPE_MASK ||
seq->type == SEQ_TYPE_META ||
(seq->type == SEQ_TYPE_SCENE && ((seq->flag & SEQ_SCENE_STRIPS) != 0))) {
return true;
}