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:
authorKent Mein <mein@cs.umn.edu>2005-01-19 16:01:49 +0300
committerKent Mein <mein@cs.umn.edu>2005-01-19 16:01:49 +0300
commit731c69d6ed04628d93ae313397cb5c8f85078ea0 (patch)
tree946b36915d14698db091d6bb0b7cb24104239120 /source/blender
parentd32f4a2851848c68e531244ad9123ebe9cd540ea (diff)
Melchior FRANZ's patch to allow the normal +- to work with border select.
Currently it doesn't conflict with anything and I think it makes sense. Kent
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/src/edit.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/src/edit.c b/source/blender/src/edit.c
index 2f13446000b..7328eb5b4db 100644
--- a/source/blender/src/edit.c
+++ b/source/blender/src/edit.c
@@ -448,10 +448,12 @@ void circle_selectCB(select_CBfunc callback)
break;
case WHEELDOWNMOUSE:
case PADPLUSKEY:
+ case EQUALKEY:
if(val) if(rad<200.0) rad*= 1.2;
break;
case WHEELUPMOUSE:
case PADMINUS:
+ case MINUSKEY:
if(val) if(rad>5.0) rad/= 1.2;
break;