diff options
author | 2013-01-22 08:45:51 +0000 | |
---|---|---|
committer | 2013-01-22 08:45:52 +0000 | |
commit | f008a11ccef84916197b0031a8ed3353c87c10f1 (patch) | |
tree | 48260b5cfc6d18ca3e45c3ebd93d0a4646a5d49a /java/src/com/android/inputmethod/latin/suggestions/SuggestionStripView.java | |
parent | 8028c1c523b2b7a83ca3f887818bdf9399f20f9b (diff) | |
parent | a729377395967f7652d93992cbcf50cd2ff522d1 (diff) | |
download | latinime-f008a11ccef84916197b0031a8ed3353c87c10f1.tar.gz latinime-f008a11ccef84916197b0031a8ed3353c87c10f1.tar.xz latinime-f008a11ccef84916197b0031a8ed3353c87c10f1.zip |
Merge "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); } |