IDEMPIERE-6178 Level 3 tab is invisible after collapse and expand of bottom pane (#2401)

This commit is contained in:
hengsin 2024-06-20 21:54:55 +08:00 committed by Carlos Ruiz
parent 4e250b6a52
commit 0641e614c2
1 changed files with 4 additions and 1 deletions

View File

@ -1597,9 +1597,12 @@ DataStatusListener, IADTabpanel, IdSpace, IFieldEditorContainer
if (detailPane.getParent() == null) {
formContainer.appendSouth(detailPane);
}
IADTabpanel tabPanel = detailPane.getSelectedADTabpanel();
if (tabPanel != null) {
if (!tabPanel.isActivated()) {
if (!tabPanel.isActivated() || !detailPane.isVisible()) {
if (!detailPane.isVisible())
detailPane.setVisible(true);
tabPanel.activate(true);
} else {
tabPanel.getGridView().invalidateGridView();