diff options
author | 2015-03-18 22:36:09 +0000 | |
---|---|---|
committer | 2015-03-18 22:36:10 +0000 | |
commit | b56f7d8ca47e5936afe0459928bae49cae6e3615 (patch) | |
tree | 55acbbc4044d0792ce435dc46943eea6c5273e91 /java/src/com/android/inputmethod/latin/LatinIME.java | |
parent | 59d3408727488d461fc45f2131ad81124d035dd1 (diff) | |
parent | 8ec36026c93d13c1118eda936ac12325e0085561 (diff) | |
download | latinime-b56f7d8ca47e5936afe0459928bae49cae6e3615.tar.gz latinime-b56f7d8ca47e5936afe0459928bae49cae6e3615.tar.xz latinime-b56f7d8ca47e5936afe0459928bae49cae6e3615.zip |
Merge "Disable message if personalization is disabled."
Diffstat (limited to 'java/src/com/android/inputmethod/latin/LatinIME.java')
-rw-r--r-- | java/src/com/android/inputmethod/latin/LatinIME.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/src/com/android/inputmethod/latin/LatinIME.java b/java/src/com/android/inputmethod/latin/LatinIME.java index 4ddde1926..a8aeb8795 100644 --- a/java/src/com/android/inputmethod/latin/LatinIME.java +++ b/java/src/com/android/inputmethod/latin/LatinIME.java @@ -1450,7 +1450,7 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen } final boolean shouldShowImportantNotice = - ImportantNoticeUtils.shouldShowImportantNotice(this); + ImportantNoticeUtils.shouldShowImportantNotice(this, currentSettingsValues); final boolean shouldShowSuggestionCandidates = currentSettingsValues.mInputAttributes.mShouldShowSuggestions && currentSettingsValues.isSuggestionsEnabledPerUserSettings(); |