Open GoogleCodeExporter opened 8 years ago
confirmed,
http://code.google.com/p/connectbot/source/detail?r=9386994add488c34dfc81002d715
8eedd4b9c7d1
is the reason for this.
specifically these lines:
// no hard keyboard? ALT-k should pass through to below
if ((orgMetaState & KeyEvent.META_ALT_ON) != 0 &&
(!hardKeyboard || hardKeyboardHidden)) {
key = 0;
}
Some symbols like !,&,$,% get sent as two key events by the soft-keyboard. the
first being a FN key, the second an actual keycode.
Removing this if() fixes the issue.
I don't understand why this is there anyway...
Original comment by m0viefre...@googlemail.com
on 13 Nov 2011 at 4:13
Original issue reported on code.google.com by
mrozents...@gmail.com
on 15 Oct 2011 at 4:31