Skip to content
Snippets Groups Projects
Commit 86f189fd authored by Ken Wakasa's avatar Ken Wakasa
Browse files

Fix NPE

bug: 3364217
Change-Id: If6a2514a8feac509d7b6716c8574521a0ec0fa3e
parent 08ca36d0
No related branches found
No related tags found
No related merge requests found
...@@ -205,10 +205,10 @@ public class LatinKeyboardView extends KeyboardView { ...@@ -205,10 +205,10 @@ public class LatinKeyboardView extends KeyboardView {
@Override @Override
public boolean onTouchEvent(MotionEvent me) { public boolean onTouchEvent(MotionEvent me) {
LatinKeyboard keyboard = getLatinKeyboard(); LatinKeyboard keyboard = getLatinKeyboard();
if (keyboard == null) return true;
// If there was a sudden jump, return without processing the actual motion event. // If there was a sudden jump, return without processing the actual motion event.
if (handleSuddenJump(me)) if (handleSuddenJump(me)) return true;
return true;
// Reset any bounding box controls in the keyboard // Reset any bounding box controls in the keyboard
if (me.getAction() == MotionEvent.ACTION_DOWN) { if (me.getAction() == MotionEvent.ACTION_DOWN) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment