ItEr29S12CUVisualizacionModelosPlanificacionItEr28S15: Fixed bug with taskcontainer tooltip generation
This commit is contained in:
parent
f27cff9b0c
commit
96e1624ea6
1 changed files with 5 additions and 1 deletions
|
|
@ -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());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue