Bug 889646: BookmarksPage should be the landing page on new about:home. [r=margaret]

This commit is contained in:
Sriram Ramasubramanian 2013-07-02 16:19:01 -07:00
parent 18142b2170
commit 74dd8c7d17

View File

@ -61,6 +61,9 @@ public class HomePager extends ViewPager {
adapter.addTab(Page.BOOKMARKS, BookmarksPage.class, null, getContext().getString(R.string.bookmarks_title));
setAdapter(adapter);
// Set the bookmarks page as the landing page.
setCurrentItem(1, false);
setVisibility(VISIBLE);
}