Longer long-press timeout in sliding input

Change-Id: Id74bddef4837ee46569775ce54f54d5535cfa463
main
Tadashi G. Takaoka 2010-12-30 17:27:47 +09:00
parent 2912c654b4
commit 5797cefca6
1 changed files with 1 additions and 1 deletions

View File

@ -509,7 +509,7 @@ public class PointerTracker {
return;
} else if (mKeyboardSwitcher.isInMomentaryAutoModeSwitchState()) {
// We use longer timeout for sliding finger input started from the symbols mode key.
mHandler.startLongPressTimer(mLongPressKeyTimeout * 2, keyIndex, this);
mHandler.startLongPressTimer(mLongPressKeyTimeout * 3, keyIndex, this);
} else {
mHandler.startLongPressTimer(mLongPressKeyTimeout, keyIndex, this);
}