From 86b7746e3c31f55425016ade1ec5cee05fdfcb05 Mon Sep 17 00:00:00 2001 From: Antonio Vazquez Date: Fri, 14 Jan 2022 13:05:50 +0100 Subject: Fix T94903: GPencil: Copying keys doesn't preserve Keyframe Type When a new frame is created, ensure the keytype of source key is used. --- source/blender/editors/gpencil/editaction_gpencil.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source/blender/editors/gpencil/editaction_gpencil.c b/source/blender/editors/gpencil/editaction_gpencil.c index 046b3088360..d250f3c44a2 100644 --- a/source/blender/editors/gpencil/editaction_gpencil.c +++ b/source/blender/editors/gpencil/editaction_gpencil.c @@ -452,6 +452,8 @@ bool ED_gpencil_anim_copybuf_paste(bAnimContext *ac, const short offset_mode) /* get frame to copy data into (if no frame returned, then just ignore) */ gpf = BKE_gpencil_layer_frame_get(gpld, gpfs->framenum, GP_GETFRAME_ADD_NEW); + /* Ensure to use same keyframe type. */ + gpf->key_type = gpfs->key_type; if (gpf) { bGPDstroke *gps, *gpsn; -- cgit v1.2.3