diff options
author | 2014-05-08 01:17:38 +0000 | |
---|---|---|
committer | 2014-05-08 01:17:38 +0000 | |
commit | 0cca28f5e78f3fdb27b095661bffbe2516926dc8 (patch) | |
tree | beae7f5a8cc5108829f1aaf1ef2335f33e6f009c /java/src/com/android/inputmethod/latin/suggestions/SuggestionStripView.java | |
parent | 4983c9440aaa12807c98edeb4ca76bfc72ccd4e9 (diff) | |
parent | e3e331aebbb493699563892e9d747102a96dffdb (diff) | |
download | latinime-0cca28f5e78f3fdb27b095661bffbe2516926dc8.tar.gz latinime-0cca28f5e78f3fdb27b095661bffbe2516926dc8.tar.xz latinime-0cca28f5e78f3fdb27b095661bffbe2516926dc8.zip |
am e3e331ae: Merge "Use margin instead of padding in SuggestionStripView"
* commit 'e3e331aebbb493699563892e9d747102a96dffdb':
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); |