IDEMPIERE-6178 Level 3 tab is invisible after collapse and expand of bottom pane (#2401)
This commit is contained in:
parent
4e250b6a52
commit
0641e614c2
|
|
@ -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();
|
||||
|
|
|
|||
Loading…
Reference in New Issue