diff options
author | 2012-03-02 21:29:51 +0900 | |
---|---|---|
committer | 2012-03-05 11:10:28 +0900 | |
commit | 04bc787ce7ab0e6abd1eb6a6e75464bfaed5d626 (patch) | |
tree | e125e760e509c96e3fea386f1e8c1ae9e8757988 /java | |
parent | c2136c4e632d4542cd806d7b91a4504c11a04768 (diff) | |
download | latinime-04bc787ce7ab0e6abd1eb6a6e75464bfaed5d626.tar.gz latinime-04bc787ce7ab0e6abd1eb6a6e75464bfaed5d626.tar.xz latinime-04bc787ce7ab0e6abd1eb6a6e75464bfaed5d626.zip |
Fix comment
This is follow up of Ie10b3e0.
Change-Id: Idefbe1575915bb87f1c86cb3ddb5efe578c5b760
Diffstat (limited to 'java')
-rw-r--r-- | java/src/com/android/inputmethod/keyboard/LatinKeyboardView.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/java/src/com/android/inputmethod/keyboard/LatinKeyboardView.java b/java/src/com/android/inputmethod/keyboard/LatinKeyboardView.java index 99bd08031..0970fb5a0 100644 --- a/java/src/com/android/inputmethod/keyboard/LatinKeyboardView.java +++ b/java/src/com/android/inputmethod/keyboard/LatinKeyboardView.java @@ -482,9 +482,9 @@ public class LatinKeyboardView extends KeyboardView implements PointerTracker.Ke final int primaryCode = parentKey.mCode; if (parentKey.mMoreKeys == null && !parentKey.altCodeWhileTyping() && parentKey.mAltCode != Keyboard.CODE_UNSPECIFIED) { - // Long press on a key that has no more keys and not altCodeWhileTyping but altCode - // defined, such as "0 +" key on phone layout and "/ :" key on datetime - // layout. + // Long press on a key that has no more keys and is not altCodeWhileTyping, but altCode + // is defined, such as the "0 +" key on the phone layout and the "/ :" key on the + // datetime layout. tracker.onLongPressed(); invokeCodeInput(parentKey.mAltCode); invokeReleaseKey(primaryCode); |