diff options
author | 2013-09-17 03:51:46 +0000 | |
---|---|---|
committer | 2013-09-17 03:51:47 +0000 | |
commit | fc51a82079f4c9105f9d2f0f9e857dd75604c075 (patch) | |
tree | 5d2d3810f92592c71d6c4e286e924be5c1da77b0 /java | |
parent | 73d607fb70b96954d109a3c1410719b59af2aacf (diff) | |
parent | 44220e727105c23fad8eaf3777390e65747c1401 (diff) | |
download | latinime-fc51a82079f4c9105f9d2f0f9e857dd75604c075.tar.gz latinime-fc51a82079f4c9105f9d2f0f9e857dd75604c075.tar.xz latinime-fc51a82079f4c9105f9d2f0f9e857dd75604c075.zip |
Merge "Disable smooth scroll of Emoji pager"
Diffstat (limited to 'java')
-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); |