diff options
author | 2014-05-08 01:14:58 +0000 | |
---|---|---|
committer | 2014-05-08 01:14:59 +0000 | |
commit | e3e331aebbb493699563892e9d747102a96dffdb (patch) | |
tree | beae7f5a8cc5108829f1aaf1ef2335f33e6f009c /java/src/com/android/inputmethod/latin/suggestions/SuggestionStripView.java | |
parent | 50b5295d5df9ade819c47717b8d411e3e0880058 (diff) | |
parent | 2b479cccaeb0bb54121730cb5e47cca3f7517c67 (diff) | |
download | latinime-e3e331aebbb493699563892e9d747102a96dffdb.tar.gz latinime-e3e331aebbb493699563892e9d747102a96dffdb.tar.xz latinime-e3e331aebbb493699563892e9d747102a96dffdb.zip |
Merge "Use margin instead of padding in SuggestionStripView"
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 a0793b133..a578fa4a4 100644 --- a/java/src/com/android/inputmethod/latin/suggestions/SuggestionStripView.java +++ b/java/src/com/android/inputmethod/latin/suggestions/SuggestionStripView.java @@ -209,7 +209,7 @@ public final class SuggestionStripView extends RelativeLayout implements OnClick } public void showAddToDictionaryHint(final String word) { - mLayoutHelper.layoutAddToDictionaryHint(word, mAddToDictionaryStrip, getWidth()); + mLayoutHelper.layoutAddToDictionaryHint(word, mAddToDictionaryStrip); // {@link TextView#setTag()} is used to hold the word to be added to dictionary. The word // will be extracted at {@link #onClick(View)}. mAddToDictionaryStrip.setTag(word); |