From 35aa14d5e33e4f5cccb9fd23be1047f26d67b409 Mon Sep 17 00:00:00 2001 From: Michael Jurka Date: Thu, 7 Jul 2011 17:01:08 -0700 Subject: Don't reset pages in AllApps if not necessary --- src/com/android/launcher2/AppsCustomizePagedView.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/com/android/launcher2/AppsCustomizePagedView.java') diff --git a/src/com/android/launcher2/AppsCustomizePagedView.java b/src/com/android/launcher2/AppsCustomizePagedView.java index 888d3d38c..90f28158a 100644 --- a/src/com/android/launcher2/AppsCustomizePagedView.java +++ b/src/com/android/launcher2/AppsCustomizePagedView.java @@ -1137,6 +1137,7 @@ public class AppsCustomizePagedView extends PagedViewWithDraggableItems implemen addAppsWithoutInvalidate(list); invalidatePageData(); } + @Override public void reset() { if (mContentType != ContentType.Applications) { @@ -1144,7 +1145,7 @@ public class AppsCustomizePagedView extends PagedViewWithDraggableItems implemen AppsCustomizeTabHost tabs = (AppsCustomizeTabHost) mLauncher.findViewById(R.id.apps_customize_pane); tabs.setCurrentTabByTag(tabs.getTabTagForContentType(ContentType.Applications)); - } else { + } else if (getCurrentPage() != 0) { setCurrentPage(0); invalidatePageData(); } -- cgit v1.2.3