diff --git a/source/blender/editors/space_sequencer/sequencer_edit.c b/source/blender/editors/space_sequencer/sequencer_edit.c index b038fed3f1c..3b5e16d84a9 100644 --- a/source/blender/editors/space_sequencer/sequencer_edit.c +++ b/source/blender/editors/space_sequencer/sequencer_edit.c @@ -2494,7 +2494,7 @@ static void sequencer_copy_animation(Scene *scene, Sequence *seq) return; } - GSet *fcurves = SEQ_fcurves_by_strip_name_get(seq->name + 2, &scene->adt->action->curves); + GSet *fcurves = SEQ_fcurves_by_strip_get(seq, &scene->adt->action->curves); GSET_FOREACH_BEGIN (FCurve *, fcu, fcurves) { BLI_addtail(&fcurves_clipboard, BKE_fcurve_copy(fcu));