aboutsummaryrefslogtreecommitdiffstats
path: root/java/src
diff options
context:
space:
mode:
authorsatok <satok@google.com>2010-07-16 17:59:24 +0900
committersatok <satok@google.com>2010-07-16 17:59:24 +0900
commitf336adc4bffa9c522a4d66077e1f4e71bda48b3b (patch)
tree11d884c0d9d06dfbf3de836f1a3dd85d3093a9db /java/src
parent9dc82cb77e9dffe378a959b4e3f36a6b396ea67d (diff)
downloadlatinime-f336adc4bffa9c522a4d66077e1f4e71bda48b3b.tar.gz
latinime-f336adc4bffa9c522a4d66077e1f4e71bda48b3b.tar.xz
latinime-f336adc4bffa9c522a4d66077e1f4e71bda48b3b.zip
Comment out re-editing feature
Change-Id: Ib4ffee3a00b8dae75e3472ccdfcb3765625ed4ed
Diffstat (limited to 'java/src')
-rw-r--r--java/src/com/android/inputmethod/latin/LatinIME.java6
1 files changed, 4 insertions, 2 deletions
diff --git a/java/src/com/android/inputmethod/latin/LatinIME.java b/java/src/com/android/inputmethod/latin/LatinIME.java
index 2527c81fa..da5b38833 100644
--- a/java/src/com/android/inputmethod/latin/LatinIME.java
+++ b/java/src/com/android/inputmethod/latin/LatinIME.java
@@ -715,7 +715,8 @@ public class LatinIME extends InputMethodService
// TODO: Uncomment this block when we enable re-editing feature
// If a word is selected
- /*if (isPredictionOn() && mJustRevertedSeparator == null
+ /*
+ if (isPredictionOn() && mJustRevertedSeparator == null
&& (candidatesStart == candidatesEnd || newSelStart != oldSelStart)
&& (newSelStart < newSelEnd - 1 || (!mPredicting))
&& !mVoiceInputHighlighted) {
@@ -724,7 +725,8 @@ public class LatinIME extends InputMethodService
} else {
abortCorrection(false);
}
- }*/
+ }
+ */
}
@Override