resolved conflicts for merge of be82f297
to master
Change-Id: If49ca384ea0ac415a75f8ea1bad77dc6719cb04dmain
commit
a19c5e6380
|
@ -1627,7 +1627,7 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen
|
|||
}
|
||||
|
||||
public boolean isSuggestionsRequested() {
|
||||
// TODO: move this method to mSettingsValues
|
||||
// TODO: move this method to mCurrentSettings
|
||||
return (null != mInputAttributes && mInputAttributes.mIsSettingsSuggestionStripOn)
|
||||
&& (mCurrentSettings.isCorrectionOn() || isShowingSuggestionsStrip());
|
||||
}
|
||||
|
@ -1953,12 +1953,16 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen
|
|||
// showSuggestions will retrieve the word near the cursor, we don't want that here)
|
||||
showSuggestions(suggestedWords, "");
|
||||
} else {
|
||||
if (!isShowingPunctuationList()) setPunctuationSuggestions();
|
||||
clearSuggestions();
|
||||
}
|
||||
}
|
||||
|
||||
public void setPunctuationSuggestions() {
|
||||
setSuggestions(mCurrentSettings.mSuggestPuncList, false);
|
||||
if (mCurrentSettings.mBigramPredictionEnabled) {
|
||||
clearSuggestions();
|
||||
} else {
|
||||
setSuggestions(mCurrentSettings.mSuggestPuncList, false);
|
||||
}
|
||||
setAutoCorrectionIndicator(false);
|
||||
setSuggestionStripShown(isSuggestionsStripVisible());
|
||||
}
|
||||
|
|
|
@ -670,7 +670,7 @@ public class SuggestionsView extends RelativeLayout implements OnClickListener,
|
|||
}
|
||||
|
||||
public void setSuggestions(SuggestedWords suggestedWords) {
|
||||
if (suggestedWords == null || suggestedWords.size() == 0)
|
||||
if (suggestedWords == null)
|
||||
return;
|
||||
|
||||
clear();
|
||||
|
|
Loading…
Reference in New Issue