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
28ed27b551
commit
4d132a1aeb
1 changed files with 3 additions and 3 deletions
|
|
@ -453,7 +453,7 @@ public class OrderPlanningModel implements IOrderPlanningModel {
|
|||
earnedValueChart.fillChart();
|
||||
//update earned value legend
|
||||
updateEarnedValueChartLegend(new LocalDate(
|
||||
earnedValueChartLegendDatebox.getValue()));
|
||||
earnedValueChartLegendDatebox.getRawValue()));
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
|
@ -957,7 +957,7 @@ public class OrderPlanningModel implements IOrderPlanningModel {
|
|||
loadChart.fillChart();
|
||||
if(updateEarnedValueChartLegend) {
|
||||
updateEarnedValueChartLegend(new LocalDate(
|
||||
earnedValueChartLegendDatebox.getValue()));
|
||||
earnedValueChartLegendDatebox.getRawValue()));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -1169,7 +1169,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