Disable separators

This commit is contained in:
M66B
2019-03-19 18:00:14 +00:00
parent 44df12724f
commit 13c2a92cfb
2 changed files with 5 additions and 1 deletions

View File

@@ -78,6 +78,6 @@ public class DrawerAdapter extends ArrayAdapter<DrawerItem> {
@Override
public boolean isEnabled(int position) {
DrawerItem item = getItem(position);
return (item != null && item.getId() != 0);
return (item != null && item.isEnabled());
}
}