Fix wrong long press timeout for shift key

Change-Id: Ifafbed1bcdaf662ee6a69050043739fa71986841
main
Tadashi G. Takaoka 2012-02-01 21:15:34 +09:00
parent ff858c7ff5
commit 40e9012276
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;