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
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2015-03-16 05:08:26 +0300
committerCampbell Barton <ideasman42@gmail.com>2015-03-16 05:08:26 +0300
commitf03e004c233c6706c4dee9607903bdd8869f4fc1 (patch)
treefe9194454eab34971e2b812da1231d15b9b3867a /source/blender/editors/animation/keyframes_general.c
parent927306d60a211a5ec64032b971f61d406c909d6a (diff)
Fix T43997: Paste fcurve keeps handle selection
Diffstat (limited to 'source/blender/editors/animation/keyframes_general.c')
-rw-r--r--source/blender/editors/animation/keyframes_general.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/animation/keyframes_general.c b/source/blender/editors/animation/keyframes_general.c
index 932a00d1687..2d869d272bd 100644
--- a/source/blender/editors/animation/keyframes_general.c
+++ b/source/blender/editors/animation/keyframes_general.c
@@ -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 */