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:
authorCampbell Barton <ideasman42@gmail.com>2013-04-08 06:04:26 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-04-08 06:04:26 +0400
commit68239cb098837762f41889f6a8069c564cabb576 (patch)
tree86ff3405f88ac0dba97fc209d973b152f5074a5c /source/blender/editors/mesh/editmesh_bevel.c
parent594eb6218c04d64d2ecba1f896b427285db7dcb7 (diff)
fix [#34918] Interactive bevel doesn't accept +/- keys to change # of segments, only scrollwheel
Since page-up/down isnt common for this use case, replace with pad+/-
Diffstat (limited to 'source/blender/editors/mesh/editmesh_bevel.c')
-rw-r--r--source/blender/editors/mesh/editmesh_bevel.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/mesh/editmesh_bevel.c b/source/blender/editors/mesh/editmesh_bevel.c
index a34ca4dcb9e..fb2c7812c12 100644
--- a/source/blender/editors/mesh/editmesh_bevel.c
+++ b/source/blender/editors/mesh/editmesh_bevel.c
@@ -339,7 +339,7 @@ static int edbm_bevel_modal(bContext *C, wmOperator *op, const wmEvent *event)
return OPERATOR_FINISHED;
case WHEELUPMOUSE: /* change number of segments */
- case PAGEUPKEY:
+ case PADPLUSKEY:
if (event->val == KM_RELEASE)
break;
@@ -350,7 +350,7 @@ static int edbm_bevel_modal(bContext *C, wmOperator *op, const wmEvent *event)
break;
case WHEELDOWNMOUSE: /* change number of segments */
- case PAGEDOWNKEY:
+ case PADMINUS:
if (event->val == KM_RELEASE)
break;