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:
Jacobo Aragunde Pérez 2012-01-18 16:51:09 +01:00
parent f2cfd9f048
commit 59bcb246be

View file

@ -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;