diff options
author | 2015-03-18 13:43:55 -0700 | |
---|---|---|
committer | 2015-03-18 15:30:22 -0700 | |
commit | 8ec36026c93d13c1118eda936ac12325e0085561 (patch) | |
tree | bd83a21071b7f5d98d1326ac7cbcec149a29812c /java/src/com/android/inputmethod/latin/LatinIME.java | |
parent | d5335d939a5551326206afb684d0c40ef352eea5 (diff) | |
download | latinime-8ec36026c93d13c1118eda936ac12325e0085561.tar.gz latinime-8ec36026c93d13c1118eda936ac12325e0085561.tar.xz latinime-8ec36026c93d13c1118eda936ac12325e0085561.zip |
Disable message if personalization is disabled.
Bug: 19087415.
Change-Id: I3974f1b676aa4a9bb04ab7f609b6daf1860c64f1
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(); |