diff options
author | 2013-09-17 11:43:11 +0900 | |
---|---|---|
committer | 2013-09-17 11:46:34 +0900 | |
commit | 44220e727105c23fad8eaf3777390e65747c1401 (patch) | |
tree | 1ddc9d63bd727a8d65dad80fcddd9069d37a5cea /java/src | |
parent | 8faa1a4482c03e18798d855a6a47de2328f0b6d5 (diff) | |
download | latinime-44220e727105c23fad8eaf3777390e65747c1401.tar.gz latinime-44220e727105c23fad8eaf3777390e65747c1401.tar.xz latinime-44220e727105c23fad8eaf3777390e65747c1401.zip |
Disable smooth scroll of Emoji pager
Bug: 10538430
Change-Id: Ib9dfa28bf6b642cc8895022ead9e6b2d64001097
Diffstat (limited to 'java/src')
-rw-r--r-- | java/src/com/android/inputmethod/keyboard/EmojiKeyboardView.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/src/com/android/inputmethod/keyboard/EmojiKeyboardView.java b/java/src/com/android/inputmethod/keyboard/EmojiKeyboardView.java index d28b5088c..546fa8140 100644 --- a/java/src/com/android/inputmethod/keyboard/EmojiKeyboardView.java +++ b/java/src/com/android/inputmethod/keyboard/EmojiKeyboardView.java @@ -533,7 +533,7 @@ public final class EmojiKeyboardView extends LinearLayout implements OnTabChange final int newCategoryPageId = mEmojiCategory.getPageIdFromCategoryId(categoryId); if (force || mEmojiCategory.getCategoryIdAndPageIdFromPagePosition( mEmojiPager.getCurrentItem()).first != categoryId) { - mEmojiPager.setCurrentItem(newCategoryPageId, true /* smoothScroll */); + mEmojiPager.setCurrentItem(newCategoryPageId, false /* smoothScroll */); } if (force || mTabHost.getCurrentTab() != newTabId) { mTabHost.setCurrentTab(newTabId); |