diff options
author | 2013-08-21 08:06:13 +0000 | |
---|---|---|
committer | 2013-08-21 08:06:13 +0000 | |
commit | 77827e7b3bb0e76ef4d39eae01fd83fe3c4f06b2 (patch) | |
tree | 514799cf050ac253f1a758b723792099e093c1c7 /java/src | |
parent | 1f39d36458d09bfdfcf05ee0fcf7fc6116582099 (diff) | |
parent | 2448159ad4bf900c1aba10dbfe51dd5479d40e38 (diff) | |
download | latinime-77827e7b3bb0e76ef4d39eae01fd83fe3c4f06b2.tar.gz latinime-77827e7b3bb0e76ef4d39eae01fd83fe3c4f06b2.tar.xz latinime-77827e7b3bb0e76ef4d39eae01fd83fe3c4f06b2.zip |
Merge "Don't start composing on dash."
Diffstat (limited to 'java/src')
-rw-r--r-- | java/src/com/android/inputmethod/latin/LatinIME.java | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/java/src/com/android/inputmethod/latin/LatinIME.java b/java/src/com/android/inputmethod/latin/LatinIME.java index 816c6daa4..5edd92b5a 100644 --- a/java/src/com/android/inputmethod/latin/LatinIME.java +++ b/java/src/com/android/inputmethod/latin/LatinIME.java @@ -2051,10 +2051,11 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen (!mConnection.isCursorTouchingWord(currentSettings) || !currentSettings.mCurrentLanguageHasSpaces)) { // Reset entirely the composing state anyway, then start composing a new word unless - // the character is a single quote. The idea here is, single quote is not a - // separator and it should be treated as a normal character, except in the first - // position where it should not start composing a word. - isComposingWord = (Constants.CODE_SINGLE_QUOTE != primaryCode); + // the character is a single quote or a dash. The idea here is, single quote and dash + // are not separators and they should be treated as normal characters, except in the + // first position where they should not start composing a word. + isComposingWord = (Constants.CODE_SINGLE_QUOTE != primaryCode + && Constants.CODE_DASH != primaryCode); // Here we don't need to reset the last composed word. It will be reset // when we commit this one, if we ever do; if on the other hand we backspace // it entirely and resume suggestions on the previous word, we'd like to still |