ItEr17S07RFComportamentoGraficoPlanificadorItEr16S09: Fixed problem updating children when reopening a taskContainer
This commit is contained in:
parent
c65b162847
commit
7a105ea79a
1 changed files with 9 additions and 9 deletions
|
|
@ -145,17 +145,17 @@ public class Task extends Div implements AfterCompose {
|
|||
|
||||
public void afterCompose() {
|
||||
updateProperties();
|
||||
if (propertiesListener != null)
|
||||
return;
|
||||
propertiesListener = new PropertyChangeListener() {
|
||||
if (propertiesListener == null) {
|
||||
propertiesListener = new PropertyChangeListener() {
|
||||
|
||||
@Override
|
||||
public void propertyChange(PropertyChangeEvent evt) {
|
||||
if (isInPage()) {
|
||||
updateProperties();
|
||||
@Override
|
||||
public void propertyChange(PropertyChangeEvent evt) {
|
||||
if (isInPage()) {
|
||||
updateProperties();
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
};
|
||||
}
|
||||
this.taskBean
|
||||
.addFundamentalPropertiesChangeListener(propertiesListener);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue