Merge remote-tracking branch 'origin/master'

This commit is contained in:
Weblate 2016-01-27 21:42:27 +01:00
commit f25cdce595

View file

@ -143,7 +143,11 @@ public class CountrySelectionFragment extends BaseOsmAndDialogFragment {
});
for (WorldRegion group : groups) {
String name = getHumanReadableName(group);
countryItems.add(new CountryItem(name, group.getRegionDownloadName()));
if (group == root) {
countryItems.add(new CountryItem(name, ""));
} else {
countryItems.add(new CountryItem(name, group.getRegionDownloadName()));
}
}
}