Bug #1402: Invalidate the TaskComponents instead of the whole GanttPanel
FEA: ItEr76S04BugFixing
This commit is contained in:
parent
45b8620102
commit
3ca4f222f1
1 changed files with 3 additions and 1 deletions
|
|
@ -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() {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue