From 03575c8620a33e5002b022d52bc5e046e2350983 Mon Sep 17 00:00:00 2001 From: Andreas Billmann Date: Tue, 24 Mar 2015 21:36:24 +0100 Subject: [PATCH] changed empty attribute icon --- src/main/java/de/geofroggerfx/ui/GeocachingIcons.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/de/geofroggerfx/ui/GeocachingIcons.java b/src/main/java/de/geofroggerfx/ui/GeocachingIcons.java index 315c543..768d40a 100644 --- a/src/main/java/de/geofroggerfx/ui/GeocachingIcons.java +++ b/src/main/java/de/geofroggerfx/ui/GeocachingIcons.java @@ -192,7 +192,7 @@ public class GeocachingIcons { public static GlyphIcons getIcon(Attribute attribute) { GlyphIcons iconName = attributeMap.get(attribute); if (iconName == null) { - iconName = FontAwesomeIcons.BLANK; + iconName = FontAwesomeIcons.SQUARE_ALT; } return iconName; }