About drawer item can't be selectable and articles item must be selected when recreating feeds items list

This commit is contained in:
Shinokuni 2019-09-18 21:29:28 +02:00
parent c0ba878d6c
commit e1a52d7b27
1 changed files with 3 additions and 1 deletions

View File

@ -120,6 +120,8 @@ public class DrawerManager {
for (SecondaryDrawerItem primaryDrawerItem : feedsWithoutFolder) {
drawer.addItem(primaryDrawerItem);
}
drawer.setSelection(ARTICLES_ITEM_ID);
}
private void createAccountHeader(List<Account> accounts) {
@ -207,7 +209,7 @@ public class DrawerManager {
PrimaryDrawerItem aboutItem = new PrimaryDrawerItem()
.withName(R.string.about)
.withIcon(R.drawable.ic_about_grey)
.withSelectable(true)
.withSelectable(false)
.withIdentifier(ABOUT_ID);
drawer.addStickyFooterItem(aboutItem);