mirror of
https://gitlab.futo.org/keyboard/latinime.git
synced 2024-09-28 14:54:30 +01:00
am 1d80cb23: Merge "Fix a NPE"
* commit '1d80cb230180305a173add2fe30b14cefc597126': Fix a NPE
This commit is contained in:
commit
d0fea7bebf
@ -266,6 +266,12 @@ public class DictionaryFacilitator {
|
|||||||
}
|
}
|
||||||
final DictionaryGroup newMostProbableDictionaryGroup =
|
final DictionaryGroup newMostProbableDictionaryGroup =
|
||||||
findDictionaryGroupWithLocale(mDictionaryGroups, locale);
|
findDictionaryGroupWithLocale(mDictionaryGroups, locale);
|
||||||
|
if (null == newMostProbableDictionaryGroup) {
|
||||||
|
// It seems this may happen as a race condition; pressing the globe key and space
|
||||||
|
// in quick succession could commit a word out of a dictionary that's not in the
|
||||||
|
// facilitator any more. In this case, just not changing things is fine.
|
||||||
|
return;
|
||||||
|
}
|
||||||
mMostProbableDictionaryGroup.mWeightForTypingInLocale =
|
mMostProbableDictionaryGroup.mWeightForTypingInLocale =
|
||||||
DictionaryGroup.WEIGHT_FOR_TYPING_IN_NOT_MOST_PROBABLE_LANGUAGE;
|
DictionaryGroup.WEIGHT_FOR_TYPING_IN_NOT_MOST_PROBABLE_LANGUAGE;
|
||||||
mMostProbableDictionaryGroup.mWeightForGesturingInLocale =
|
mMostProbableDictionaryGroup.mWeightForGesturingInLocale =
|
||||||
|
Loading…
x
Reference in New Issue
Block a user