Fix T60351: Blender crashes when using fill tool without existent keyframe

This commit is contained in:
Antonio Vazquez 2019-01-09 16:39:07 +01:00
parent 90e354fd7a
commit 513bc5954c
Notes: blender-bot 2023-02-14 07:17:43 +01:00
Referenced by issue #60351, Blender crashes when using fill tool without existent keyframe
1 changed files with 1 additions and 1 deletions

View File

@ -222,7 +222,7 @@ static void gp_draw_datablock(tGPDfill *tgpf, const float ink[4])
/* if active layer and no keyframe, create a new one */
if (gpl == tgpf->gpl) {
if (gpl->actframe->framenum != cfra_eval) {
if ((gpl->actframe == NULL) || (gpl->actframe->framenum != cfra_eval)) {
BKE_gpencil_layer_getframe(gpl, cfra_eval, GP_GETFRAME_ADD_NEW);
}
}