diff options
author | 2012-12-13 21:59:13 +0900 | |
---|---|---|
committer | 2012-12-14 20:28:22 +0900 | |
commit | 18d688c94bb8e1e26de2d12445cb3096c6126f75 (patch) | |
tree | 3a2d0c289e0ead79c8df7d582fa043bc8f975f0c /java/src/com/android/inputmethod/latin/suggestions/SuggestionStripView.java | |
parent | 5cb40f8a767c529af41836d33274ea3043e25011 (diff) | |
download | latinime-18d688c94bb8e1e26de2d12445cb3096c6126f75.tar.gz latinime-18d688c94bb8e1e26de2d12445cb3096c6126f75.tar.xz latinime-18d688c94bb8e1e26de2d12445cb3096c6126f75.zip |
Use the amended user dictionary word for insertion
When the user edits a word before adding it to the user
dictionary, the keyboard should replace whatever was
committed before with the amended version.
Bug: 7725834
Change-Id: I1a417be6c5a86d6a96bc2c76aca314ad8f1202a9
Diffstat (limited to 'java/src/com/android/inputmethod/latin/suggestions/SuggestionStripView.java')
-rw-r--r-- | java/src/com/android/inputmethod/latin/suggestions/SuggestionStripView.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/src/com/android/inputmethod/latin/suggestions/SuggestionStripView.java b/java/src/com/android/inputmethod/latin/suggestions/SuggestionStripView.java index e926fa209..a1c95ad8a 100644 --- a/java/src/com/android/inputmethod/latin/suggestions/SuggestionStripView.java +++ b/java/src/com/android/inputmethod/latin/suggestions/SuggestionStripView.java @@ -73,7 +73,7 @@ import java.util.ArrayList; public final class SuggestionStripView extends RelativeLayout implements OnClickListener, OnLongClickListener { public interface Listener { - public boolean addWordToUserDictionary(String word); + public void addWordToUserDictionary(String word); public void pickSuggestionManually(int index, CharSequence word); } |