Bug #1335: Don't force the check of the earned value legend date box every time
the gantt is reloaded. This was causing problems when the gantt changes and the tasks moved to dates quite far in time. FEA: ItEr76S04BugFixing
This commit is contained in:
parent
f2cfd9f048
commit
59bcb246be
1 changed files with 3 additions and 3 deletions
|
|
@ -452,7 +452,7 @@ public class OrderPlanningModel implements IOrderPlanningModel {
|
|||
earnedValueChart.fillChart();
|
||||
//update earned value legend
|
||||
updateEarnedValueChartLegend(new LocalDate(
|
||||
earnedValueChartLegendDatebox.getValue()));
|
||||
earnedValueChartLegendDatebox.getRawValue()));
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
|
@ -956,7 +956,7 @@ public class OrderPlanningModel implements IOrderPlanningModel {
|
|||
loadChart.fillChart();
|
||||
if(updateEarnedValueChartLegend) {
|
||||
updateEarnedValueChartLegend(new LocalDate(
|
||||
earnedValueChartLegendDatebox.getValue()));
|
||||
earnedValueChartLegendDatebox.getRawValue()));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -1168,7 +1168,7 @@ public class OrderPlanningModel implements IOrderPlanningModel {
|
|||
loadChart.fillChart();
|
||||
if (updateEarnedValueChartLegend) {
|
||||
updateEarnedValueChartLegend(new LocalDate(
|
||||
earnedValueChartLegendDatebox.getValue()));
|
||||
earnedValueChartLegendDatebox.getRawValue()));
|
||||
}
|
||||
}
|
||||
return null;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue