Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Enhancement2
  • Loading branch information
rog13002 committed Dec 9, 2015
1 parent 262d3b0 commit e6a4040
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion rapla/src/org/rapla/gui/internal/view/TreeFactoryImpl.java
Expand Up @@ -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;
}
}
Expand Down

0 comments on commit e6a4040

Please sign in to comment.