(Android UI) Another fix for Android 2.3x devices

This commit is contained in:
twinaphex 2015-01-03 18:59:52 +01:00
parent e327eb4696
commit abe7afbee1

View File

@ -90,7 +90,10 @@ public final class InstalledCoresFragment extends ListFragment
public void updateInstalledCoresList()
{
adapter.clear();
adapter.addAll(getInstalledCoresList());
for (int i = 0; i < getInstalledCoresList().size(); i++)
{
adapter.add(getInstalledCoresList().get(i));
}
adapter.notifyDataSetChanged();
}