Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorAntonio Vazquez <blendergit@gmail.com>2022-01-14 15:05:50 +0300
committerPhilipp Oeser <info@graphics-engineer.com>2022-01-17 16:10:55 +0300
commit4cd881c70f2e325ad30316dfbf5b32d22ba9da3b (patch)
tree958ff097ec2ae9dc0a70d6e10295125aef08df14 /source
parentcaf362422e458da5f8b9d8878167165946994fa4 (diff)
Fix T94903: GPencil: Copying keys doesn't preserve Keyframe Type
When a new frame is created, ensure the keytype of source key is used.
Diffstat (limited to 'source')
-rw-r--r--source/blender/editors/gpencil/editaction_gpencil.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/editors/gpencil/editaction_gpencil.c b/source/blender/editors/gpencil/editaction_gpencil.c
index 166111c582c..4a53aa83358 100644
--- a/source/blender/editors/gpencil/editaction_gpencil.c
+++ b/source/blender/editors/gpencil/editaction_gpencil.c
@@ -474,6 +474,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;