Remove the small PC grid UI

This commit is contained in:
Cameron Gutman
2020-06-11 21:32:39 -07:00
parent 6fa18e126f
commit 4a5de26406
4 changed files with 2 additions and 63 deletions

View File

@@ -22,12 +22,7 @@ public class PcGridAdapter extends GenericGridAdapter<PcView.ComputerObject> {
}
private static int getLayoutIdForPreferences(PreferenceConfiguration prefs) {
if (prefs.smallIconMode) {
return R.layout.pc_grid_item_small;
}
else {
return R.layout.pc_grid_item;
}
return R.layout.pc_grid_item;
}
public void updateLayoutWithPreferences(Context context, PreferenceConfiguration prefs) {