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:
authorTon Roosendaal <ton@blender.org>2003-10-18 03:18:18 +0400
committerTon Roosendaal <ton@blender.org>2003-10-18 03:18:18 +0400
commita9af6850111f3dee0006e47ba4410deeecdc8287 (patch)
treec548b74cf334ec8e712309ea08e8c4b96cfd70fa /source/blender/src/editsound.c
parentd622706883f93402612fab053261e169faeba85e (diff)
- further work on theme colors:
- panels work - ipo window done - buttonswindow done Please be warned that saving Themes now wont work... it will also save BLACK for all uninitalized colors... so dont panic when you see weird things, just go back the default theme and copy a new one.
Diffstat (limited to 'source/blender/src/editsound.c')
-rw-r--r--source/blender/src/editsound.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/source/blender/src/editsound.c b/source/blender/src/editsound.c
index 74d2086c8e9..150a9eca289 100644
--- a/source/blender/src/editsound.c
+++ b/source/blender/src/editsound.c
@@ -113,7 +113,7 @@ void winqreadsoundspace(ScrArea *sa, void *spacedata, BWinEvent *evt)
switch(event) {
case LEFTMOUSE:
-
+ ssound->flag |= SND_CFRA_NUM;
do {
getmouseco_areawin(mval);
areamouseco_to_ipoco(G.v2d, mval, &dx, &dy);
@@ -130,6 +130,8 @@ void winqreadsoundspace(ScrArea *sa, void *spacedata, BWinEvent *evt)
}
} while(get_mbut()&L_MOUSE);
+ ssound->flag &= ~SND_CFRA_NUM;
+
doredraw= 1;
break;