diff options
author | 2012-09-24 09:26:29 -0700 | |
---|---|---|
committer | 2012-09-24 09:26:29 -0700 | |
commit | 5dcdd4eab5155f5f317cae578d44b5018bb751b9 (patch) | |
tree | 40d20b3165f1fef8e393a711947fe8973c0e5159 /java/src | |
parent | 3a8f1e69fbb1aa9fe725d10e1bdf5fea89df4af0 (diff) | |
parent | 88985bfa2e8e05e7974fc3c275076888e98f1b5d (diff) | |
download | latinime-5dcdd4eab5155f5f317cae578d44b5018bb751b9.tar.gz latinime-5dcdd4eab5155f5f317cae578d44b5018bb751b9.tar.xz latinime-5dcdd4eab5155f5f317cae578d44b5018bb751b9.zip |
am 88985bfa: Merge "Fix a bug where the cursor pos wouldn\'t be tracked correctly" into jb-mr1-dev
* commit '88985bfa2e8e05e7974fc3c275076888e98f1b5d':
Fix a bug where the cursor pos wouldn't be tracked correctly
Diffstat (limited to 'java/src')
-rw-r--r-- | java/src/com/android/inputmethod/latin/LatinIME.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/src/com/android/inputmethod/latin/LatinIME.java b/java/src/com/android/inputmethod/latin/LatinIME.java index 45ecfd2e7..95f89c0cc 100644 --- a/java/src/com/android/inputmethod/latin/LatinIME.java +++ b/java/src/com/android/inputmethod/latin/LatinIME.java @@ -721,7 +721,7 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen } } - mConnection.resetCachesUponCursorMove(mLastSelectionStart); + mConnection.resetCachesUponCursorMove(editorInfo.initialSelStart); if (isDifferentTextField) { mainKeyboardView.closing(); |