diff --git a/src/de/frosch95/geofrogger/fx/components/GeocachingIcons.java b/src/de/frosch95/geofrogger/fx/components/GeocachingIcons.java index f0bcd4e..5c64176 100644 --- a/src/de/frosch95/geofrogger/fx/components/GeocachingIcons.java +++ b/src/de/frosch95/geofrogger/fx/components/GeocachingIcons.java @@ -63,6 +63,8 @@ public class GeocachingIcons { break; case EVENT: + case CITO_EVENT: + case MEGA_EVENT: iconName = "/icons/iconmonstr-calendar-4-icon.png"; break; diff --git a/src/de/frosch95/geofrogger/model/Type.java b/src/de/frosch95/geofrogger/model/Type.java index fe9eec2..eb309c8 100644 --- a/src/de/frosch95/geofrogger/model/Type.java +++ b/src/de/frosch95/geofrogger/model/Type.java @@ -15,7 +15,9 @@ public enum Type { EVENT("Event Cache"), WHERIGO("Wherigo Cache"), WEBCAM_CACHE("Webcam Cache"), - VIRTUAL_CACHE("Virtual Cache"); + VIRTUAL_CACHE("Virtual Cache"), + CITO_EVENT("Cache In Trash Out Event"), + MEGA_EVENT("Mega-Event Cache"); private String groundspeakString;