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>2010-07-11 01:09:38 +0400
committerCampbell Barton <ideasman42@gmail.com>2010-07-11 01:09:38 +0400
commite531f3736df13d9143f4b4c7589d65b12df1ff1b (patch)
treecbaa29a060a61a3755cb3540495f8f90bdb115be /source
parent22371e88168f5a36623f68265f9994d76790c503 (diff)
drawing in the timeline could change bezier keys while rendering, disable.
Diffstat (limited to 'source')
-rw-r--r--source/blender/editors/space_time/space_time.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/editors/space_time/space_time.c b/source/blender/editors/space_time/space_time.c
index b2e1bfb9b93..b73c08e6542 100644
--- a/source/blender/editors/space_time/space_time.c
+++ b/source/blender/editors/space_time/space_time.c
@@ -473,7 +473,8 @@ static void time_main_area_draw(const bContext *C, ARegion *ar)
UI_view2d_grid_free(grid);
/* keyframes */
- time_draw_keyframes(C, stime, ar);
+ if(!G.rendering) /* ANIM_nla_mapping_apply_fcurve() modifies curve data while rendering, possible race condition */
+ time_draw_keyframes(C, stime, ar);
/* current frame */
if ((stime->flag & TIME_DRAWFRAMES)==0) flag |= DRAWCFRA_UNIT_SECONDS;