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:
authorjulianeisel <julian_eisel@web.de>2015-01-25 04:43:57 +0300
committerjulianeisel <julian_eisel@web.de>2015-01-25 04:43:57 +0300
commit285548556585a0a8f1878416013c83cb052d68fb (patch)
tree64a197671201c9e81c97d3993ab5bf65a76901b2 /source/blender/editors/screen/screen_ops.c
parent492b9ab5e3d8b4e1c425bfae5494c998853107ea (diff)
Fix T43399: VSE - don't show fps info when stopping animation with ALT+A
Caused by a missing notifier on the animation_play operator.
Diffstat (limited to 'source/blender/editors/screen/screen_ops.c')
-rw-r--r--source/blender/editors/screen/screen_ops.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/editors/screen/screen_ops.c b/source/blender/editors/screen/screen_ops.c
index 0ab04c61ac3..8976224d368 100644
--- a/source/blender/editors/screen/screen_ops.c
+++ b/source/blender/editors/screen/screen_ops.c
@@ -3534,6 +3534,8 @@ int ED_screen_animation_play(bContext *C, int sync, int mode)
/* stop playback now */
ED_screen_animation_timer(C, 0, 0, 0, 0);
sound_stop_scene(scene);
+
+ WM_event_add_notifier(C, NC_SCENE | ND_FRAME, scene);
}
else {
int refresh = SPACE_TIME; /* these settings are currently only available from a menu in the TimeLine */