Fix sequencer transform test failing

This was casued by incorrect versioning keyframe conversion in
recent commit 5713626422.
This commit is contained in:
Richard Antalik 2020-12-16 21:24:42 +01:00
parent ad7682ffdb
commit 247b10e6a2
Notes: blender-bot 2023-02-13 11:54:34 +01:00
Referenced by commit 5fe24ce295, Fix T84010: Missing scale animation versioning code
1 changed files with 0 additions and 6 deletions

View File

@ -284,12 +284,6 @@ static void seq_convert_transform_crop_2(const Scene *scene,
char name_esc[(sizeof(seq->name) - 2) * 2], *path;
BLI_str_escape(name_esc, seq->name + 2, sizeof(name_esc));
path = BLI_sprintfN("sequence_editor.sequences_all[\"%s\"].transform.offset_x", name_esc);
seq_convert_transform_animation_2(scene, path, scale_to_fit_factor);
MEM_freeN(path);
path = BLI_sprintfN("sequence_editor.sequences_all[\"%s\"].transform.offset_y", name_esc);
seq_convert_transform_animation_2(scene, path, scale_to_fit_factor);
MEM_freeN(path);
path = BLI_sprintfN("sequence_editor.sequences_all[\"%s\"].crop.min_x", name_esc);
seq_convert_transform_animation_2(scene, path, 1 / scale_to_fit_factor);
MEM_freeN(path);