Revert "Slightly optimise greyed out apk/app views"

This reverts commit 19583c2b75224bf60ebfe65ff86c1d061b20f855.
This commit is contained in:
Daniel Martí 2013-09-06 13:03:15 +02:00
parent 38d7fcdd4a
commit f6b83871d3

View File

@ -110,11 +110,9 @@ abstract public class AppListAdapter extends BaseAdapter {
}
// Disable it all if it isn't compatible...
if (!app.compatible) {
View[] views = { convertView, status, summary, license, name };
for (View view : views) {
view.setEnabled(false);
}
View[] views = { convertView, status, summary, license, name };
for (View view : views) {
view.setEnabled(app.compatible);
}
return convertView;