ItEr29S12CUVisualizacionModelosPlanificacionItEr28S15: Fixed bug with taskcontainer tooltip generation

This commit is contained in:
Lorenzo Tilve 2009-10-08 10:21:30 +02:00 committed by Javier Moran Rua
parent f27cff9b0c
commit 96e1624ea6

View file

@ -266,7 +266,11 @@ public abstract class OrderPlanningModel implements IOrderPlanningModel {
private void forceLoadOfLabels(List<TaskElement> initial) {
for (TaskElement taskElement : initial) {
taskElement.getOrderElement().getLabels().size();
if (taskElement.isLeaf()) {
taskElement.getOrderElement().getLabels().size();
} else {
forceLoadOfLabels(taskElement.getChildren());
}
}
}