diff --git a/rapla/src/org/rapla/gui/internal/view/TreeFactoryImpl.java b/rapla/src/org/rapla/gui/internal/view/TreeFactoryImpl.java index 26c4e11..0347b0f 100644 --- a/rapla/src/org/rapla/gui/internal/view/TreeFactoryImpl.java +++ b/rapla/src/org/rapla/gui/internal/view/TreeFactoryImpl.java @@ -988,7 +988,17 @@ public class TreeFactoryImpl extends RaplaGUIComponent implements TreeFactory { String classificationType = type.getAnnotation(DynamicTypeAnnotations.KEY_CLASSIFICATION_TYPE); if (DynamicTypeAnnotations.VALUE_CLASSIFICATION_TYPE_RESERVATION.equals(classificationType)) { setBorder(conflictBorder); - } else { + // adds folder icon to Event Types + icon = folderClosedIcon; + + + } + + else if (DynamicTypeAnnotations.VALUE_CLASSIFICATION_TYPE_RESERVATION.equals(classificationType)){ + icon = folderClosedIcon; + } + + else { icon = folderClosedIcon; } }