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:
authorBastien Montagne <montagne29@wanadoo.fr>2014-02-22 15:08:39 +0400
committerBastien Montagne <montagne29@wanadoo.fr>2014-02-22 15:08:39 +0400
commitc1cdce364bc1f122db2ce72a15fc969a375d0f4e (patch)
tree7d3242be840b1c46ab479b24ee421069dbf7d772 /source/blender/editors/util/numinput.c
parent3fe487217db6af766ca428975a0e70c35f31fa03 (diff)
Fix T38743: Modal input feature appears to be missing from 2.70 test builds
Add 'pad *' in addition to '=' to toggle basic/advanced numinput modes.
Diffstat (limited to 'source/blender/editors/util/numinput.c')
-rw-r--r--source/blender/editors/util/numinput.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/editors/util/numinput.c b/source/blender/editors/util/numinput.c
index 158ff42a57b..42604338ef4 100644
--- a/source/blender/editors/util/numinput.c
+++ b/source/blender/editors/util/numinput.c
@@ -334,6 +334,7 @@ bool handleNumInput(bContext *C, NumInput *n, const wmEvent *event)
utf8_buf = ascii;
break;
case EQUALKEY:
+ case PADASTERKEY:
if (!(n->flag & NUM_EDIT_FULL)) {
n->flag |= NUM_EDIT_FULL;
return true;