From 4acb57a7a7cf33fb1c6cae01ee1965074ec23c45 Mon Sep 17 00:00:00 2001 From: Antony Riakiotakis Date: Fri, 21 Mar 2014 21:06:49 +0200 Subject: [PATCH] Possible fix for T39330 period key is ignored in transform operations Not 100% certain if this fixes, I will ask the user to verify through buildbot. --- source/blender/editors/util/numinput.c | 1 + 1 file changed, 1 insertion(+) diff --git a/source/blender/editors/util/numinput.c b/source/blender/editors/util/numinput.c index 980582b79c9..4c097ca7da6 100644 --- a/source/blender/editors/util/numinput.c +++ b/source/blender/editors/util/numinput.c @@ -333,6 +333,7 @@ bool handleNumInput(bContext *C, NumInput *n, const wmEvent *event) } return true; case PADPERIOD: + case PERIODKEY: /* Force numdot, some OSs/countries generate a comma char in this case, sic... (T37992) */ ascii[0] = '.'; utf8_buf = ascii;