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:
authorJoerg Mueller <nexyon@gmail.com>2009-07-29 12:02:50 +0400
committerJoerg Mueller <nexyon@gmail.com>2009-07-29 12:02:50 +0400
commit519cf33f85a82d8bbee4f0ad69463b1c8f322c6e (patch)
treecbda803098c0443a58b27b88b17be795043e13ff /source/blender/editors
parentf7b291790890580b5a297405cc32421c11b9a3cf (diff)
Sound Branch:
Readded scrubbing.
Diffstat (limited to 'source/blender/editors')
-rw-r--r--source/blender/editors/animation/anim_ops.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/source/blender/editors/animation/anim_ops.c b/source/blender/editors/animation/anim_ops.c
index 58e0d10fe14..8ba3e3618f8 100644
--- a/source/blender/editors/animation/anim_ops.c
+++ b/source/blender/editors/animation/anim_ops.c
@@ -57,7 +57,7 @@
#include "ED_screen.h"
// AUD_XXX
-//#include "BKE_sound.h"
+#include "BKE_sound.h"
/* ********************** frame change operator ***************************/
@@ -95,8 +95,7 @@ static void change_frame_apply(bContext *C, wmOperator *op)
CFRA= cfra;
// AUD_XXX
-/* if(scene->audio.flag & AUDIO_SCRUB)
- seq_update_audio(C, CFRA);*/
+ sound_scrub(C);
WM_event_add_notifier(C, NC_SCENE|ND_FRAME, scene);
}