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.
|
// the composing word, reset the last composed word, tell the inputconnection about it.
|
||||||
private void resetEntireInputState() {
|
private void resetEntireInputState() {
|
||||||
resetComposingState(true /* alsoResetLastComposedWord */);
|
resetComposingState(true /* alsoResetLastComposedWord */);
|
||||||
clearSuggestionStrip();
|
if (mCurrentSettings.mBigramPredictionEnabled) {
|
||||||
|
clearSuggestionStrip();
|
||||||
|
} else {
|
||||||
|
setSuggestionStrip(mCurrentSettings.mSuggestPuncList, false);
|
||||||
|
}
|
||||||
mConnection.finishComposingText();
|
mConnection.finishComposingText();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue