diff options
author | 2013-09-18 12:40:28 +0000 | |
---|---|---|
committer | 2013-09-18 12:40:29 +0000 | |
commit | 08bc97f86fd82b51a59e1d0c6532b093c54dd3b5 (patch) | |
tree | 3299251f870de157d0739fdfe3fe48ba5a271346 /java/src/com/android/inputmethod/latin/LatinIME.java | |
parent | 75feb0f648f1449c9e25781c331b3f9806419459 (diff) | |
parent | ba99d8cd0b53ed45b3cb9469db430998018bd110 (diff) | |
download | latinime-08bc97f86fd82b51a59e1d0c6532b093c54dd3b5.tar.gz latinime-08bc97f86fd82b51a59e1d0c6532b093c54dd3b5.tar.xz latinime-08bc97f86fd82b51a59e1d0c6532b093c54dd3b5.zip |
Merge "Allow double-space-to-period after a plus char"
Diffstat (limited to 'java/src/com/android/inputmethod/latin/LatinIME.java')
-rw-r--r-- | java/src/com/android/inputmethod/latin/LatinIME.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/java/src/com/android/inputmethod/latin/LatinIME.java b/java/src/com/android/inputmethod/latin/LatinIME.java index bfb904422..9f779eb43 100644 --- a/java/src/com/android/inputmethod/latin/LatinIME.java +++ b/java/src/com/android/inputmethod/latin/LatinIME.java @@ -1394,7 +1394,8 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen || codePoint == Constants.CODE_CLOSING_PARENTHESIS || codePoint == Constants.CODE_CLOSING_SQUARE_BRACKET || codePoint == Constants.CODE_CLOSING_CURLY_BRACKET - || codePoint == Constants.CODE_CLOSING_ANGLE_BRACKET; + || codePoint == Constants.CODE_CLOSING_ANGLE_BRACKET + || codePoint == Constants.CODE_PLUS; } // Callback for the {@link SuggestionStripView}, to call when the "add to dictionary" hint is |