Don't reset pages in AllApps if not necessary

This commit is contained in:
Michael Jurka
2011-07-07 17:01:08 -07:00
parent eb99f1648c
commit 35aa14d5e3
2 changed files with 3 additions and 2 deletions
@@ -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();
}