mirror of
https://gitlab.futo.org/keyboard/latinime.git
synced 2024-09-28 14:54:30 +01:00
Fix a bug where the spellcheck is using the old non-binary contacts dictionary
Bug: 6607023 Change-Id: I6dc120dea23052a0841e281c20706bfb21fd9876
This commit is contained in:
parent
fe824948bb
commit
faf0059f35
@ -152,7 +152,11 @@ public class AndroidSpellCheckerService extends SpellCheckerService
|
||||
|
||||
private void startUsingContactsDictionaryLocked() {
|
||||
if (null == mContactsDictionary) {
|
||||
mContactsDictionary = new SynchronouslyLoadedContactsDictionary(this);
|
||||
if (LatinIME.USE_BINARY_CONTACTS_DICTIONARY) {
|
||||
mContactsDictionary = new SynchronouslyLoadedContactsBinaryDictionary(this);
|
||||
} else {
|
||||
mContactsDictionary = new SynchronouslyLoadedContactsDictionary(this);
|
||||
}
|
||||
}
|
||||
final Iterator<WeakReference<DictionaryCollection>> iterator =
|
||||
mDictionaryCollectionsList.iterator();
|
||||
|
Loading…
Reference in New Issue
Block a user