Allow to start gesture from a non-letter key except from a modifier key

Bug: 7303982
Change-Id: Id54965c1d7b2b760ac2a76a0fc509b46948e75e6
main
Tadashi G. Takaoka 2012-10-09 17:20:07 +09:00
parent 60f6120e2b
commit 4df6549c1a
1 changed files with 2 additions and 2 deletions

View File

@ -757,9 +757,9 @@ public final class PointerTracker implements PointerTrackerQueue.Element {
if (!sShouldHandleGesture) {
return;
}
// A gesture should start only from the letter key.
// A gesture should start only from a non-modifier key.
mIsDetectingGesture = (mKeyboard != null) && mKeyboard.mId.isAlphabetKeyboard()
&& !mIsShowingMoreKeysPanel && key != null && Keyboard.isLetterCode(key.mCode);
&& !mIsShowingMoreKeysPanel && key != null && !key.isModifier();
if (mIsDetectingGesture) {
if (getActivePointerTrackerCount() == 1) {
sGestureFirstDownTime = eventTime;