am dd8c1d8d: am 8850bdc7: Fix for 2170453: Capitalization sticks when entering passwords in Browser

Merge commit 'dd8c1d8db320dde6bb6ae17189e4750dba239503' into eclair-mr2-plus-aosp

* commit 'dd8c1d8db320dde6bb6ae17189e4750dba239503':
  Fix for 2170453: Capitalization sticks when entering passwords in Browser
main
Amith Yamasani 2009-10-12 13:26:12 -07:00 committed by Android Git Automerger
commit f49aa7b034
1 changed files with 1 additions and 5 deletions

View File

@ -713,11 +713,7 @@ public class LatinIME extends InputMethodService
} else {
sendKeyChar((char)primaryCode);
}
if (mPredicting && mComposing.length() == 1) {
updateShiftKeyState(getCurrentInputEditorInfo());
} else {
postUpdateShiftKeyState();
}
updateShiftKeyState(getCurrentInputEditorInfo());
measureCps();
TextEntryState.typedCharacter((char) primaryCode, isWordSeparator(primaryCode));
}