revert, should work

This commit is contained in:
sonora 2015-06-12 21:39:53 +02:00
parent d663b581c5
commit 3aa3c75422

View file

@ -383,14 +383,10 @@ public class POIMapLayer extends OsmandMapLayer implements ContextMenuLayer.ICon
topBar.setTitle(title);
topBar.setBackgroundColor(ctx.getResources().getColor(getResIdFromAttribute(ctx, R.attr.pstsTabBackground)));
topBar.setTitleTextColor(ctx.getResources().getColor(getResIdFromAttribute(ctx, R.attr.pstsTextColor)));
String lng = "";
if(!Algorithms.isEmpty(a.getNameSelected(lang))) {
lng = lang.toUpperCase();
} else if (!Algorithms.isEmpty(a.getNameSelected("en"))) {
String lng = a.getNameSelected(lang);
if(Algorithms.isEmpty(lng)) {
lng = "EN";
} else {
//TODO: If no English article exists either, now pick the language for which the longest article exists for the Amenity
lng = "XX";
}
final String langSelected = lng;