Clear suggestion strip when the suggestion starts
bug: 3488704 bug: 3480132 Change-Id: Ie895d2ad1b58dc65fe16d65baa6fccafd4a142bbmain
parent
db241a1038
commit
7e99a28dfc
|
@ -1290,6 +1290,7 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen
|
||||||
mComposing.setLength(0);
|
mComposing.setLength(0);
|
||||||
saveWordInHistory(mBestWord);
|
saveWordInHistory(mBestWord);
|
||||||
mWord.reset();
|
mWord.reset();
|
||||||
|
clearSuggestions();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
KeyboardSwitcher switcher = mKeyboardSwitcher;
|
KeyboardSwitcher switcher = mKeyboardSwitcher;
|
||||||
|
|
|
@ -297,7 +297,7 @@ public class Suggest implements Dictionary.WordCallback {
|
||||||
}
|
}
|
||||||
if (normalizedScore >= mAutoCorrectionThreshold) {
|
if (normalizedScore >= mAutoCorrectionThreshold) {
|
||||||
if (DBG) {
|
if (DBG) {
|
||||||
Log.d(TAG, "Auto corrected by S-threthhold.");
|
Log.d(TAG, "Auto corrected by S-threshold.");
|
||||||
}
|
}
|
||||||
mHasAutoCorrection = true;
|
mHasAutoCorrection = true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue