diff options
author | 2014-02-14 04:07:46 +0000 | |
---|---|---|
committer | 2014-02-14 04:07:46 +0000 | |
commit | 4197c6f3ab1db7d37bfb5fca05bd7169504f451e (patch) | |
tree | a2c096df9dd2efdf9b388ae225bb4b34d9b7c55a /java/src/com/android/inputmethod/latin/suggestions/SuggestionStripView.java | |
parent | a2c8e166e9d680ee0121f1e01c2f33305623c59d (diff) | |
parent | 8adedbf47c7ac150d4ac7e6cdbee3ece38f346e7 (diff) | |
download | latinime-4197c6f3ab1db7d37bfb5fca05bd7169504f451e.tar.gz latinime-4197c6f3ab1db7d37bfb5fca05bd7169504f451e.tar.xz latinime-4197c6f3ab1db7d37bfb5fca05bd7169504f451e.zip |
Merge "Show the suggestion strip for the important notice"
Diffstat (limited to 'java/src/com/android/inputmethod/latin/suggestions/SuggestionStripView.java')
-rw-r--r-- | java/src/com/android/inputmethod/latin/suggestions/SuggestionStripView.java | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/java/src/com/android/inputmethod/latin/suggestions/SuggestionStripView.java b/java/src/com/android/inputmethod/latin/suggestions/SuggestionStripView.java index 32d7d2317..cf0a7a2aa 100644 --- a/java/src/com/android/inputmethod/latin/suggestions/SuggestionStripView.java +++ b/java/src/com/android/inputmethod/latin/suggestions/SuggestionStripView.java @@ -227,8 +227,7 @@ public final class SuggestionStripView extends RelativeLayout implements OnClick // it has been shown once already or not, and if in the setup wizard). If applicable, it shows // the notice. In all cases, it returns true if it was shown, false otherwise. public boolean maybeShowImportantNoticeTitle() { - if (!ImportantNoticeUtils.hasNewImportantNotice(getContext()) - || ImportantNoticeUtils.isInSystemSetupWizard(getContext())) { + if (!ImportantNoticeUtils.hasNewImportantNoticeAndNotInSetupWizard(getContext())) { return false; } final int width = getWidth(); |