[Bf-blender-cvs] [4acb57a] master: Possible fix for T39330 period key is ignored in transform operations

Antony Riakiotakis noreply at git.blender.org
Fri Mar 21 20:07:27 CET 2014


Commit: 4acb57a7a7cf33fb1c6cae01ee1965074ec23c45
Author: Antony Riakiotakis
Date:   Fri Mar 21 21:06:49 2014 +0200
https://developer.blender.org/rB4acb57a7a7cf33fb1c6cae01ee1965074ec23c45

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.

===================================================================

M	source/blender/editors/util/numinput.c

===================================================================

diff --git a/source/blender/editors/util/numinput.c b/source/blender/editors/util/numinput.c
index 980582b..4c097ca 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;




More information about the Bf-blender-cvs mailing list