[Reported against r13 running on beta 0.9 emulator]
Pressing L to toggle the lights display doesn't work.
Cause is the following code in the GlobalTime.onKeyDown method:
// If we're not in alphabetical entry mode, convert letters
// to their digit equivalents
if (!mAlphaKeySet) {
char numChar = event.getNumber();
if (numChar >= '0' && numChar <= '9') {
keyCode = KeyEvent.KEYCODE_0 + (numChar - '0');
}
}
After this code has executed, KEYCODE_L has been remapped to KEYCODE_5.
Note that event.getNumber() returns '5' for 'L' because the JKL key on the
touch pad bears the numeral 5.
KEYCODE_W and most other alpha keys are also broken by this code.
Original issue reported on code.google.com by joe.bowb...@gmail.com on 29 Aug 2008 at 12:04
Original issue reported on code.google.com by
joe.bowb...@gmail.com
on 29 Aug 2008 at 12:04