aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com/android/inputmethod/latin/LatinIME.java
diff options
context:
space:
mode:
authorTadashi G. Takaoka <takaoka@google.com>2011-09-13 17:46:23 +0900
committerTadashi G. Takaoka <takaoka@google.com>2011-09-13 19:11:10 +0900
commitea843f2a2404f4bc04fda494e475520162cfca27 (patch)
tree6db166e7b9eb3d1bcfc8cc16248de20ff49c0c3b /java/src/com/android/inputmethod/latin/LatinIME.java
parent6602b03e8057e2fbec6923c3aefb58f22594b97f (diff)
downloadlatinime-ea843f2a2404f4bc04fda494e475520162cfca27.tar.gz
latinime-ea843f2a2404f4bc04fda494e475520162cfca27.tar.xz
latinime-ea843f2a2404f4bc04fda494e475520162cfca27.zip
Make WordComposer aware of capitalized word
Change-Id: If6c0edef2334f018f2e04c6034f8ce747206f150
Diffstat (limited to 'java/src/com/android/inputmethod/latin/LatinIME.java')
-rw-r--r--java/src/com/android/inputmethod/latin/LatinIME.java4
1 files changed, 0 insertions, 4 deletions
diff --git a/java/src/com/android/inputmethod/latin/LatinIME.java b/java/src/com/android/inputmethod/latin/LatinIME.java
index b467a32a2..fdf58f6ef 100644
--- a/java/src/com/android/inputmethod/latin/LatinIME.java
+++ b/java/src/com/android/inputmethod/latin/LatinIME.java
@@ -1408,10 +1408,6 @@ public class LatinIME extends InputMethodServiceCompatWrapper implements Keyboar
}
}
if (mHasUncommittedTypedChars) {
- if (mComposingStringBuilder.length() == 0 && switcher.isAlphabetMode()
- && switcher.isShiftedOrShiftLocked()) {
- mWordComposer.setFirstCharCapitalized(true);
- }
mComposingStringBuilder.append((char) code);
mWordComposer.add(code, keyCodes, x, y);
final InputConnection ic = getCurrentInputConnection();