diff options
author | 2013-09-16 20:54:16 -0700 | |
---|---|---|
committer | 2013-09-16 20:54:16 -0700 | |
commit | f5e03177019f1dd0c2fecbb92d67c8fd87b4ebc5 (patch) | |
tree | 3e085c34e459f48f771f2037c762dd770c28d892 /java/src | |
parent | 7074307beee95b8d77014d4391ce09919627c4b2 (diff) | |
parent | fc51a82079f4c9105f9d2f0f9e857dd75604c075 (diff) | |
download | latinime-f5e03177019f1dd0c2fecbb92d67c8fd87b4ebc5.tar.gz latinime-f5e03177019f1dd0c2fecbb92d67c8fd87b4ebc5.tar.xz latinime-f5e03177019f1dd0c2fecbb92d67c8fd87b4ebc5.zip |
am fc51a820: Merge "Disable smooth scroll of Emoji pager"
* commit 'fc51a82079f4c9105f9d2f0f9e857dd75604c075':
Disable smooth scroll of Emoji pager
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); |