[Bug #724] Fixed bug, checking if orderElementTreeController is null before using it.
FEA: ItEr63S03BugFixing
This commit is contained in:
parent
e0319e2a73
commit
fbbf3c02bf
1 changed files with 3 additions and 1 deletions
|
|
@ -576,7 +576,9 @@ public class OrderCRUDController extends GenericForwardComposer {
|
|||
}
|
||||
|
||||
private void refreshOrderWindow() {
|
||||
orderElementTreeController.resetCellsMarkedAsModified();
|
||||
if (orderElementTreeController != null) {
|
||||
orderElementTreeController.resetCellsMarkedAsModified();
|
||||
}
|
||||
updateDisabilitiesOnInterface();
|
||||
refreshCodeTextboxesOnly();
|
||||
getVisibility().showOnly(editWindow);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue