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

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