diff options
author | 2013-01-22 00:48:09 -0800 | |
---|---|---|
committer | 2013-01-22 00:48:09 -0800 | |
commit | ad7e0f9fe4450e1f427f782a14c7eb774fca5c22 (patch) | |
tree | c7ac1d3e291d1846ed150b80246a553922fd3bbd /java/src/com/android/inputmethod/latin/suggestions/SuggestionStripView.java | |
parent | 0390acf1ba37c075fc8b67196ef03e2941286bee (diff) | |
parent | f008a11ccef84916197b0031a8ed3353c87c10f1 (diff) | |
download | latinime-ad7e0f9fe4450e1f427f782a14c7eb774fca5c22.tar.gz latinime-ad7e0f9fe4450e1f427f782a14c7eb774fca5c22.tar.xz latinime-ad7e0f9fe4450e1f427f782a14c7eb774fca5c22.zip |
am f008a11c: Merge "Cache MoreKeysKeyboard instead of container view of it"
* commit 'f008a11ccef84916197b0031a8ed3353c87c10f1':
Cache MoreKeysKeyboard instead of container view of it
Diffstat (limited to 'java/src/com/android/inputmethod/latin/suggestions/SuggestionStripView.java')
-rw-r--r-- | java/src/com/android/inputmethod/latin/suggestions/SuggestionStripView.java | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/java/src/com/android/inputmethod/latin/suggestions/SuggestionStripView.java b/java/src/com/android/inputmethod/latin/suggestions/SuggestionStripView.java index 92b96e754..bc51d5d62 100644 --- a/java/src/com/android/inputmethod/latin/suggestions/SuggestionStripView.java +++ b/java/src/com/android/inputmethod/latin/suggestions/SuggestionStripView.java @@ -676,12 +676,11 @@ public final class SuggestionStripView extends RelativeLayout implements OnClick new MoreKeysPanel.Controller() { @Override public boolean onDismissMoreKeysPanel() { - mMainKeyboardView.dimEntireKeyboard(false /* dimmed */); return mMainKeyboardView.onDismissMoreKeysPanel(); } @Override - public void onShowMoreKeysPanel(MoreKeysPanel panel) { + public void onShowMoreKeysPanel(final MoreKeysPanel panel) { mMainKeyboardView.onShowMoreKeysPanel(panel); } @@ -728,7 +727,6 @@ public final class SuggestionStripView extends RelativeLayout implements OnClick mMoreSuggestionsMode = MORE_SUGGESTIONS_CHECKING_MODAL_OR_SLIDING; mOriginX = mLastX; mOriginY = mLastY; - mMainKeyboardView.dimEntireKeyboard(true /* dimmed */); for (int i = 0; i < params.mSuggestionsCountInStrip; i++) { mWords.get(i).setPressed(false); } |