diff options
author | 2014-02-12 16:52:44 +0900 | |
---|---|---|
committer | 2014-02-12 17:30:04 +0900 | |
commit | 8adedbf47c7ac150d4ac7e6cdbee3ece38f346e7 (patch) | |
tree | 29ab0d1170949941020ba55ce13477e7556770b5 /java/src/com/android/inputmethod/latin/suggestions/SuggestionStripView.java | |
parent | 351c8e6185a3b301a7469358cc1df5d075fc1b01 (diff) | |
download | latinime-8adedbf47c7ac150d4ac7e6cdbee3ece38f346e7.tar.gz latinime-8adedbf47c7ac150d4ac7e6cdbee3ece38f346e7.tar.xz latinime-8adedbf47c7ac150d4ac7e6cdbee3ece38f346e7.zip |
Show the suggestion strip for the important notice
Bug: 10587358
Change-Id: Ia060a9ca9dfc2e7fe0750536a9fea3b9cc5900c4
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 68c891bf3..29c0613e4 100644 --- a/java/src/com/android/inputmethod/latin/suggestions/SuggestionStripView.java +++ b/java/src/com/android/inputmethod/latin/suggestions/SuggestionStripView.java @@ -225,8 +225,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(); |