Browse Source

REPORT-4957 [9.0内测] 右边内容属性表窗口变粉红,不可用

master
plough 7 years ago
parent
commit
c9b196c5c1
  1. 4
      designer_base/src/com/fr/design/mainframe/EastRegionContainerPane.java

4
designer_base/src/com/fr/design/mainframe/EastRegionContainerPane.java

@ -589,7 +589,7 @@ public class EastRegionContainerPane extends UIEastResizableContainer {
if (popupDialog != null && isPoppedOut) {
popupDialog.replaceContentPane(this);
}
if (popupPane != null && !isRightPaneVisible()) {
if (popupPane != null && popupPane.isVisible()) {
popupPane.replaceContentPane(contentArea);
}
@ -627,7 +627,7 @@ public class EastRegionContainerPane extends UIEastResizableContainer {
if (isRightPaneVisible()) {
hideCurrentPopupPane();
replaceContentPane(contentPane);
} else if(popupPane != null) {
} else if(popupPane != null && popupPane.isVisible()) {
popupPane.replaceContentPane(contentArea);
}
}

Loading…
Cancel
Save