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>2004-10-29 21:21:28 +0400
committerTon Roosendaal <ton@blender.org>2004-10-29 21:21:28 +0400
commitaa223d1812e8974e349c18ea7eb8e1f6254b8218 (patch)
treea580a9cd975090fc05632bade8d3e42f9230da07 /source/blender/src/editaction.c
parent408702009e4315a932d8f7b321f5ef5c7b424f14 (diff)
- Two fixes:
1) Sound window displays 'frs/sec' value correct now (found a 25 hardcoded) 2) LeftMouse click in sliders of IpoWind, NLA, Action allows to make sliders smaller/larger, for quick zoom. Used to work but disappeared in early this decade or so :)
Diffstat (limited to 'source/blender/src/editaction.c')
-rw-r--r--source/blender/src/editaction.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/src/editaction.c b/source/blender/src/editaction.c
index 06bade5365d..a809586e98f 100644
--- a/source/blender/src/editaction.c
+++ b/source/blender/src/editaction.c
@@ -2441,7 +2441,8 @@ void winqreadactionspace(ScrArea *sa, void *spacedata, BWinEvent *evt)
* based on user preference USER_LMOUSESELECT
*/
case LEFTMOUSE:
- if (mval[0]>ACTWIDTH){
+ if(view2dmove(LEFTMOUSE)); // only checks for sliders
+ else if (mval[0]>ACTWIDTH){
do {
getmouseco_areawin(mval);