GPencil: Fix crash when using time offset modifier

This fixes a mistake in 60bf561d37, which did not account for offset
frames by the time offset modifier.
This commit is contained in:
Falk David 2022-06-15 16:15:45 +02:00
parent fe988f6c7f
commit f0fa90e156
Notes: blender-bot 2023-02-13 15:16:28 +01:00
Referenced by issue #98661, 3.2: Potential candidates for corrective releases
1 changed files with 1 additions and 1 deletions

View File

@ -689,7 +689,7 @@ static void gpencil_copy_visible_frames_to_eval(Depsgraph *depsgraph, Scene *sce
/* Always copy active frame to eval, because the modifiers always evaluate the active frame,
* even if it's not visible (e.g. the layer is hidden).*/
if (gpl_eval->actframe != NULL) {
copy_frame_to_eval_ex(gpf_eval->runtime.gpf_orig, gpl_eval->actframe);
copy_frame_to_eval_ex(gpl_eval->actframe->runtime.gpf_orig, gpl_eval->actframe);
}
}