Bug #1402: Invalidate the TaskComponents instead of the whole GanttPanel

FEA: ItEr76S04BugFixing
This commit is contained in:
Manuel Rego Casasnovas 2012-04-10 13:39:50 +02:00
parent 45b8620102
commit 3ca4f222f1

View file

@ -141,7 +141,9 @@ public class GanttPanel extends XulElement implements AfterCompose {
for (Task task : this.tasksLists.getAllTasks()) {
task.updateTooltipText();
}
invalidate();
for (TaskComponent taskComponent : this.tasksLists.getTaskComponents()) {
taskComponent.invalidate();
}
}
public TimeTrackerComponent getTimeTrackerComponent() {