[Bug #1309] Fix problem with reported hours bar when progress type is changed
FEA: ItEr75S04BugFixing
This commit is contained in:
parent
e3136719f7
commit
a1221c2581
2 changed files with 2 additions and 1 deletions
|
|
@ -491,7 +491,7 @@ public class TaskComponent extends Div implements AfterCompose {
|
|||
updateCompletionAdvance();
|
||||
}
|
||||
|
||||
private void updateCompletionReportedHours() {
|
||||
public void updateCompletionReportedHours() {
|
||||
if (task.isShowingReportedHours()) {
|
||||
int startPixels = this.task.getBeginDate().toPixels(getMapper());
|
||||
String widthHoursAdvancePercentage = pixelsFromStartUntil(
|
||||
|
|
|
|||
|
|
@ -97,6 +97,7 @@ public class TaskList extends XulElement implements AfterCompose {
|
|||
public void updateCompletion(String progressType) {
|
||||
for (TaskComponent task: getTaskComponents()) {
|
||||
task.updateCompletion(progressType);
|
||||
task.updateCompletionReportedHours();
|
||||
task.updateTooltipText(progressType);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue