|
|
|
@ -433,7 +433,11 @@ public class XWAbsoluteLayout extends XLayoutContainer {
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public XLayoutContainer getTopLayout() { |
|
|
|
|
XLayoutContainer xTopLayout = XCreatorUtils.getParentXLayoutContainer(this).getTopLayout(); |
|
|
|
|
XLayoutContainer parentXLayoutContainer = XCreatorUtils.getParentXLayoutContainer(this); |
|
|
|
|
if (parentXLayoutContainer == null) { |
|
|
|
|
return this; |
|
|
|
|
} |
|
|
|
|
XLayoutContainer xTopLayout = parentXLayoutContainer.getTopLayout(); |
|
|
|
|
if (xTopLayout != null && !xTopLayout.isEditable()) { |
|
|
|
|
return xTopLayout; |
|
|
|
|
} else { |
|
|
|
|