am 25c90e6d: Merge "Don\'t do recorrection when suggestions are off." into jb-mr2-dev
* commit '25c90e6d51aeca5dce05b5adb691876b55a142d5': Don't do recorrection when suggestions are off.main
commit
ace3f3c5d5
|
@ -929,8 +929,11 @@ public final class LatinIME extends InputMethodService implements KeyboardAction
|
||||||
resetEntireInputState(newSelStart);
|
resetEntireInputState(newSelStart);
|
||||||
}
|
}
|
||||||
|
|
||||||
// We moved the cursor. If we are touching a word, we need to resume suggestion.
|
// We moved the cursor. If we are touching a word, we need to resume suggestion,
|
||||||
|
// unless suggestions are off.
|
||||||
|
if (isSuggestionsStripVisible()) {
|
||||||
mHandler.postResumeSuggestions();
|
mHandler.postResumeSuggestions();
|
||||||
|
}
|
||||||
// Reset the last recapitalization.
|
// Reset the last recapitalization.
|
||||||
mRecapitalizeStatus.deactivate();
|
mRecapitalizeStatus.deactivate();
|
||||||
mKeyboardSwitcher.updateShiftState();
|
mKeyboardSwitcher.updateShiftState();
|
||||||
|
@ -2108,6 +2111,8 @@ public final class LatinIME extends InputMethodService implements KeyboardAction
|
||||||
return false;
|
return false;
|
||||||
if (mSuggestionStripView.isShowingAddToDictionaryHint())
|
if (mSuggestionStripView.isShowingAddToDictionaryHint())
|
||||||
return true;
|
return true;
|
||||||
|
if (null == mSettings.getCurrent())
|
||||||
|
return false;
|
||||||
if (!mSettings.getCurrent().isSuggestionStripVisibleInOrientation(mDisplayOrientation))
|
if (!mSettings.getCurrent().isSuggestionStripVisibleInOrientation(mDisplayOrientation))
|
||||||
return false;
|
return false;
|
||||||
if (mSettings.getCurrent().isApplicationSpecifiedCompletionsOn())
|
if (mSettings.getCurrent().isApplicationSpecifiedCompletionsOn())
|
||||||
|
|
Loading…
Reference in New Issue