aboutsummaryrefslogtreecommitdiffstats
path: root/java/src
diff options
context:
space:
mode:
authorSatoshi Kataoka <satok@google.com>2013-10-03 13:20:33 -0700
committerAndroid Git Automerger <android-git-automerger@android.com>2013-10-03 13:20:33 -0700
commite39df0b274ef2a97fe312b27520746207d6c01f8 (patch)
tree6e8afa512f06b1f5ea52a71d856340e1263ad325 /java/src
parent90394a361be5d8283cd5d2793db351985bfba2bc (diff)
parent16c85695ee293f3756d01a267ff0851b8a675c2d (diff)
downloadlatinime-e39df0b274ef2a97fe312b27520746207d6c01f8.tar.gz
latinime-e39df0b274ef2a97fe312b27520746207d6c01f8.tar.xz
latinime-e39df0b274ef2a97fe312b27520746207d6c01f8.zip
am 16c85695: am 400ec7c5: am 0938fb69: Allow gesture from the delete key
* commit '16c85695ee293f3756d01a267ff0851b8a675c2d': Allow gesture from the delete key
Diffstat (limited to 'java/src')
-rw-r--r--java/src/com/android/inputmethod/keyboard/PointerTracker.java6
1 files changed, 4 insertions, 2 deletions
diff --git a/java/src/com/android/inputmethod/keyboard/PointerTracker.java b/java/src/com/android/inputmethod/keyboard/PointerTracker.java
index d4d0d8718..c71833211 100644
--- a/java/src/com/android/inputmethod/keyboard/PointerTracker.java
+++ b/java/src/com/android/inputmethod/keyboard/PointerTracker.java
@@ -937,9 +937,10 @@ public final class PointerTracker implements PointerTrackerQueue.Element {
if (!sShouldHandleGesture) {
return;
}
- // A gesture should start only from a non-modifier key.
+ // A gesture should start only from a non-modifier key. Note that the gesture detection is
+ // disabled when the key is repeating.
mIsDetectingGesture = (mKeyboard != null) && mKeyboard.mId.isAlphabetKeyboard()
- && key != null && !key.isModifier() && !key.isRepeatable();
+ && key != null && !key.isModifier();
if (mIsDetectingGesture) {
if (getActivePointerTrackerCount() == 1) {
sGestureFirstDownTime = eventTime;
@@ -1422,6 +1423,7 @@ public final class PointerTracker implements PointerTrackerQueue.Element {
if (key == null || key.getCode() != code) {
return;
}
+ mIsDetectingGesture = false;
final int nextRepeatCount = repeatCount + 1;
mTimerProxy.startKeyRepeatTimer(this, nextRepeatCount, sParams.mKeyRepeatInterval);
callListenerOnPressAndCheckKeyboardLayoutChange(key, repeatCount);