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:
Diffstat (limited to 'source/blender/src/transform_numinput.c')
-rwxr-xr-xsource/blender/src/transform_numinput.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/source/blender/src/transform_numinput.c b/source/blender/src/transform_numinput.c
index b070031a7df..a2e9fe475b7 100755
--- a/source/blender/src/transform_numinput.c
+++ b/source/blender/src/transform_numinput.c
@@ -46,6 +46,8 @@
#include "MEM_guardedalloc.h"
+#include "BKE_global.h" /* for G */
+
#include "blendef.h"
#include "mydevice.h"
@@ -176,6 +178,9 @@ char handleNumInput(NumInput *n, unsigned short event)
n->ctrl[idx] = -10;
}
break;
+ case PADMINUS:
+ if(G.qual & LR_ALTKEY)
+ break;
case MINUSKEY:
if (n->flag & NUM_NO_NEGATIVE)
break;