Fix T43997: Paste fcurve keeps handle selection

This commit is contained in:
Campbell Barton 2015-03-16 13:08:26 +11:00
parent 927306d60a
commit f03e004c23
Notes: blender-bot 2023-02-14 09:22:39 +01:00
Referenced by issue #43997, copy paste keyframes on curves fail on unselect handles
Referenced by issue #43997, copy paste keyframes on curves fail on unselect handles
1 changed files with 1 additions and 1 deletions

View File

@ -774,7 +774,7 @@ static void paste_animedit_keys_fcurve(FCurve *fcu, tAnimCopybufItem *aci, float
/* First de-select existing FCurve's keyframes */
for (i = 0, bezt = fcu->bezt; i < fcu->totvert; i++, bezt++) {
bezt->f2 &= ~SELECT;
BEZ_DESEL(bezt);
}
/* mix mode with existing data */