am 40e90122: Fix wrong long press timeout for shift key

* commit '40e9012276b1df9be8c1a9069eaeb16027549a85':
  Fix wrong long press timeout for shift key
main
Tadashi G. Takaoka 2012-02-01 04:19:04 -08:00 committed by Android Git Automerger
commit 4eaa8c678b
1 changed files with 1 additions and 1 deletions

View File

@ -166,7 +166,7 @@ public class LatinKeyboardView extends KeyboardView implements PointerTracker.Ke
final int delay;
switch (code) {
case Keyboard.CODE_SHIFT:
delay = mParams.mLongPressKeyTimeout;
delay = mParams.mLongPressShiftKeyTimeout;
break;
default:
delay = 0;