Skip sudden jump detection on distinct multitouch device

Bug: 3400448
Change-Id: I37150d624b73ed089875a905fe04c5b8b3ecfa0a
This commit is contained in:
Tadashi G. Takaoka 2011-02-04 14:28:29 +09:00
parent ea55bf5df7
commit 9a5b592b27

View file

@ -141,6 +141,9 @@ public class LatinKeyboardView extends KeyboardView {
* KeyboardView. * KeyboardView.
*/ */
private boolean handleSuddenJump(MotionEvent me) { private boolean handleSuddenJump(MotionEvent me) {
// If device has distinct multi touch panel, there is no need to check sudden jump.
if (hasDistinctMultitouch())
return false;
final int action = me.getAction(); final int action = me.getAction();
final int x = (int) me.getX(); final int x = (int) me.getX();
final int y = (int) me.getY(); final int y = (int) me.getY();