Fix T59005: no FCurve cleanup in the Timeline

as opposed to the 'real' Dopesheet e.g. keyframes were not merged when
placed on the same frame

Reviewers: brecht, aligorith, angavrilov

Maniphest Tasks: T59005

Differential Revision: https://developer.blender.org/D4061
This commit is contained in:
Philipp Oeser 2018-12-10 17:05:51 +01:00
parent d421f3cac8
commit e4153946ad
Notes: blender-bot 2023-02-14 04:36:58 +01:00
Referenced by issue #59005, Keyframing problem with SHIFT+D
1 changed files with 1 additions and 1 deletions

View File

@ -6518,7 +6518,7 @@ void special_aftertrans_update(bContext *C, TransInfo *t)
ob = ac.obact;
if (ELEM(ac.datatype, ANIMCONT_DOPESHEET, ANIMCONT_SHAPEKEY)) {
if (ELEM(ac.datatype, ANIMCONT_DOPESHEET, ANIMCONT_SHAPEKEY, ANIMCONT_TIMELINE)) {
ListBase anim_data = {NULL, NULL};
bAnimListElem *ale;
short filter = (ANIMFILTER_DATA_VISIBLE | ANIMFILTER_FOREDIT /*| ANIMFILTER_CURVESONLY*/);