diff options
author | 2012-02-08 12:03:55 +0900 | |
---|---|---|
committer | 2012-02-08 12:03:55 +0900 | |
commit | 2124bc5bf5af31cf3d2789b70ebd2f24c815f5f4 (patch) | |
tree | 8e422ddaed000b225a8e7a056a141c0a35fde7d5 /java/src | |
parent | fd6a52c8d5fea684ef22b38c3a3838a65d259832 (diff) | |
download | latinime-2124bc5bf5af31cf3d2789b70ebd2f24c815f5f4.tar.gz latinime-2124bc5bf5af31cf3d2789b70ebd2f24c815f5f4.tar.xz latinime-2124bc5bf5af31cf3d2789b70ebd2f24c815f5f4.zip |
Remove a nested edition occurence
This was harmless but confusing
Change-Id: Ic271f80d3dadf01b29e3875c6a8ad51b99a936f9
Diffstat (limited to 'java/src')
-rw-r--r-- | java/src/com/android/inputmethod/latin/LatinIME.java | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/java/src/com/android/inputmethod/latin/LatinIME.java b/java/src/com/android/inputmethod/latin/LatinIME.java index af791e5cb..2e5761ca2 100644 --- a/java/src/com/android/inputmethod/latin/LatinIME.java +++ b/java/src/com/android/inputmethod/latin/LatinIME.java @@ -1400,7 +1400,7 @@ public class LatinIME extends InputMethodServiceCompatWrapper implements Keyboar } if (SPACE_STATE_DOUBLE == spaceState) { - if (revertDoubleSpace(ic)) { + if (revertDoubleSpaceWhileInBatchEdit(ic)) { // No need to reset mSpaceState, it has already be done (that's why we // receive it as a parameter) return; @@ -2220,7 +2220,7 @@ public class LatinIME extends InputMethodServiceCompatWrapper implements Keyboar } // "ic" must not be null - private boolean revertDoubleSpace(final InputConnection ic) { + private boolean revertDoubleSpaceWhileInBatchEdit(final InputConnection ic) { mHandler.cancelDoubleSpacesTimer(); // Here we test whether we indeed have a period and a space before us. This should not // be needed, but it's there just in case something went wrong. @@ -2233,10 +2233,8 @@ public class LatinIME extends InputMethodServiceCompatWrapper implements Keyboar + "\". \" just before the cursor."); return false; } - ic.beginBatchEdit(); ic.deleteSurroundingText(2, 0); ic.commitText(" ", 1); - ic.endBatchEdit(); return true; } |