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

Merge commit '8850bdc7e4c1da7049231bc1e21f17213562f9b6' into eclair-mr2

* commit '8850bdc7e4c1da7049231bc1e21f17213562f9b6':
  Fix for 2170453: Capitalization sticks when entering passwords in Browser
main
Amith Yamasani 2009-10-12 13:21:01 -07:00 committed by Android Git Automerger
commit dd8c1d8db3
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));
}