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:
authorTon Roosendaal <ton@blender.org>2006-07-05 15:59:00 +0400
committerTon Roosendaal <ton@blender.org>2006-07-05 15:59:00 +0400
commitc2a2913ba64f66437123137f9f0e07843336a00a (patch)
tree50f94a31df1bcbf79c4f52a3a630877a0ad04983 /source
parent8640615ac6386dbf6372be286115321c06878ede (diff)
Enabled Audio scrubbing in LMB dragging in IpoWindow and TimeLine.
Diffstat (limited to 'source')
-rw-r--r--source/blender/src/edittime.c2
-rw-r--r--source/blender/src/space.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/src/edittime.c b/source/blender/src/edittime.c
index fcc3dfad6a0..266d7bda139 100644
--- a/source/blender/src/edittime.c
+++ b/source/blender/src/edittime.c
@@ -548,7 +548,7 @@ void winqreadtimespace(ScrArea *sa, void *spacedata, BWinEvent *evt)
{
first= 0;
CFRA= cfra;
- update_for_newframe_nodraw(1); // 1= nosound
+ update_for_newframe_nodraw(0); // 1= nosound
timeline_force_draw(stime->redraws);
}
else PIL_sleep_ms(30);
diff --git a/source/blender/src/space.c b/source/blender/src/space.c
index d2be9a19207..196f0a340c1 100644
--- a/source/blender/src/space.c
+++ b/source/blender/src/space.c
@@ -2132,7 +2132,7 @@ static void winqreadipospace(ScrArea *sa, void *spacedata, BWinEvent *evt)
if( cfra!=CFRA ) {
CFRA= cfra;
- update_for_newframe_nodraw(1); /* 1 = nosound */
+ update_for_newframe_nodraw(0); /* 1 = nosound */
force_draw_all(0); /* To make constraint sliders redraw */
}
else PIL_sleep_ms(30);