IDEMPIERE-4514 Grid View Layout Bug (#735)

This commit is contained in:
Carlos Ruiz 2021-06-22 08:33:25 +02:00 committed by GitHub
parent ded9693163
commit 0ba9360cf0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -537,7 +537,8 @@ public class CompositeADTabbox extends AbstractADTabbox
hasChanges = true;
}
if (hasChanges) {
headerTab.getDetailPane().getParent().invalidate();
if (headerTab.getDetailPane().getParent() != null)
headerTab.getDetailPane().getParent().invalidate();
}
}
}