Display punctuation suggestions on cursor move
...if punctuation suggestions are requested. Fixes the symptom, but not the root cause of Bug: 6981089 Change-Id: I683a7451c99457829cb4e5a762f43548ff89a535main
parent
2e4713a54e
commit
ac25fcac71
|
@ -1045,7 +1045,11 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen
|
|||
// the composing word, reset the last composed word, tell the inputconnection about it.
|
||||
private void resetEntireInputState() {
|
||||
resetComposingState(true /* alsoResetLastComposedWord */);
|
||||
if (mCurrentSettings.mBigramPredictionEnabled) {
|
||||
clearSuggestionStrip();
|
||||
} else {
|
||||
setSuggestionStrip(mCurrentSettings.mSuggestPuncList, false);
|
||||
}
|
||||
mConnection.finishComposingText();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue