commit | 6efe788494195fb8a57a2317cfa35e01ae7fda13 | [log] [tgz] |
---|---|---|
author | Jean Chalard <jchalard@google.com> | Mon Sep 24 17:27:03 2012 +0900 |
committer | Jean Chalard <jchalard@google.com> | Mon Sep 24 17:27:03 2012 +0900 |
tree | 91dff014242931e1df4162999afc9f2a0d25c37b | |
parent | 65ef26081b78f52960ad520f997b3e79dcbb8528 [diff] |
Set punctuation suggestions at start if activated Bug: 7218468 Change-Id: I9f8c1f13dc26cedb95b65279a34a825021dfa72a
diff --git a/java/src/com/android/inputmethod/latin/LatinIME.java b/java/src/com/android/inputmethod/latin/LatinIME.java index b77eef4..45ecfd2 100644 --- a/java/src/com/android/inputmethod/latin/LatinIME.java +++ b/java/src/com/android/inputmethod/latin/LatinIME.java
@@ -715,7 +715,9 @@ mSpaceState = SPACE_STATE_NONE; if (mSuggestionStripView != null) { - mSuggestionStripView.clear(); + // This will set the punctuation suggestions if next word suggestion is off; + // otherwise it will clear the suggestion strip. + setPunctuationSuggestions(); } }