changed empty attribute icon

This commit is contained in:
Andreas Billmann
2015-03-24 21:36:24 +01:00
parent 1caf0be107
commit 03575c8620

View File

@@ -192,7 +192,7 @@ public class GeocachingIcons {
public static GlyphIcons getIcon(Attribute attribute) { public static GlyphIcons getIcon(Attribute attribute) {
GlyphIcons iconName = attributeMap.get(attribute); GlyphIcons iconName = attributeMap.get(attribute);
if (iconName == null) { if (iconName == null) {
iconName = FontAwesomeIcons.BLANK; iconName = FontAwesomeIcons.SQUARE_ALT;
} }
return iconName; return iconName;
} }