am 86f189fd: Fix NPE
* commit '86f189fd969de7259a0e0fcc1cf868ba667f3e3b': Fix NPEmain
commit
53746972d0
|
@ -205,10 +205,10 @@ public class LatinKeyboardView extends KeyboardView {
|
|||
@Override
|
||||
public boolean onTouchEvent(MotionEvent me) {
|
||||
LatinKeyboard keyboard = getLatinKeyboard();
|
||||
if (keyboard == null) return true;
|
||||
|
||||
// If there was a sudden jump, return without processing the actual motion event.
|
||||
if (handleSuddenJump(me))
|
||||
return true;
|
||||
if (handleSuddenJump(me)) return true;
|
||||
|
||||
// Reset any bounding box controls in the keyboard
|
||||
if (me.getAction() == MotionEvent.ACTION_DOWN) {
|
||||
|
|
Loading…
Reference in New Issue