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:
Philipp Oeser
2025-05-13 14:41:36 +02:00
committed by Philipp Oeser
parent 9a540f480c
commit fba5e2ed58

View File

@@ -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) {