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
path: root/source
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2014-05-14 07:31:34 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-05-14 07:31:34 +0400
commit254c724aa144f22efcc6609b1441d1dfb4f74824 (patch)
treee017efa39f7deaaf917aa7dbfa2c83659cd3f3c5 /source
parenta756499c62d0284396aa12b7488597cc55368b6e (diff)
FCurve: stop generic rna update from changing curve handle type
Diffstat (limited to 'source')
-rw-r--r--source/blender/makesrna/intern/rna_fcurve.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_fcurve.c b/source/blender/makesrna/intern/rna_fcurve.c
index 266bc1bf0a5..2dad2c15db2 100644
--- a/source/blender/makesrna/intern/rna_fcurve.c
+++ b/source/blender/makesrna/intern/rna_fcurve.c
@@ -457,7 +457,7 @@ static void rna_FCurve_range(FCurve *fcu, float range[2])
static void rna_FCurve_update_data_ex(FCurve *fcu)
{
sort_time_fcurve(fcu);
- testhandles_fcurve(fcu, true);
+ calchandles_fcurve(fcu);
}
/* RNA update callback for F-Curves after curve shape changes */