Fix #138771: VSE Non-uniform scaling strip in Preview window broken
Caused by 4a11be2656
Seems like a copy-paste (using wrong axis in `image_transform_set`)
Pull Request: https://projects.blender.org/blender/blender/pulls/138807
This commit is contained in:
committed by
Philipp Oeser
parent
9a540f480c
commit
fba5e2ed58
@@ -271,7 +271,7 @@ static void image_transform_set(TransInfo *t)
|
||||
|
||||
/* Scale. */
|
||||
transform->scale_x = tdseq->orig_scale.x * result.scale.x;
|
||||
transform->scale_y = tdseq->orig_scale.x * result.scale.x;
|
||||
transform->scale_y = tdseq->orig_scale.y * result.scale.y;
|
||||
|
||||
/* Rotation. Scaling can cause negative rotation. */
|
||||
if (t->mode == TFM_ROTATION) {
|
||||
|
||||
Reference in New Issue
Block a user