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>2005-07-10 16:50:14 +0400
committerTon Roosendaal <ton@blender.org>2005-07-10 16:50:14 +0400
commit31f50d9247edd6427bc76514b94cea72a3d0eb44 (patch)
tree091eb0769fc90af1a76c58f52803fa1ee4de4efb /source/blender/src/space.c
parent227a67e1057f5a8595e1129422fdacfbe17b48c2 (diff)
For long on the wanna-have list;
Ipocurves with "Auto" handles now have option to remain horizontal on the extrema (tops & valleys). Use ALT+H to set this per selected curve. Note this is a per-curve feature, not per-handle. If it works satisfying I can check on making this the default new added curve.
Diffstat (limited to 'source/blender/src/space.c')
-rw-r--r--source/blender/src/space.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/source/blender/src/space.c b/source/blender/src/space.c
index 0b29c47f2b1..906f4c61eee 100644
--- a/source/blender/src/space.c
+++ b/source/blender/src/space.c
@@ -2015,9 +2015,11 @@ static void winqreadipospace(ScrArea *sa, void *spacedata, BWinEvent *evt)
transform_ipo('g');
break;
case HKEY:
- if((G.qual==LR_SHIFTKEY))
+ if(G.qual==LR_ALTKEY)
+ sethandles_ipo(4); // tsk tsk ton!
+ if(G.qual==LR_SHIFTKEY)
sethandles_ipo(HD_AUTO);
- else if((G.qual==0))
+ else if(G.qual==0)
sethandles_ipo(HD_ALIGN);
break;
case JKEY: