|
|
@ -203,6 +203,10 @@ public class XWAbsoluteLayout extends XLayoutContainer { |
|
|
|
double percentH = ((double) backupBound.height / (double) currentBound.height); |
|
|
|
double percentH = ((double) backupBound.height / (double) currentBound.height); |
|
|
|
for (int index = 0, n = this.getComponentCount(); index < n; index++) { |
|
|
|
for (int index = 0, n = this.getComponentCount(); index < n; index++) { |
|
|
|
XCreator creator = (XCreator) this.getComponent(index); |
|
|
|
XCreator creator = (XCreator) this.getComponent(index); |
|
|
|
|
|
|
|
if (creator.toData().isAspectRatioLocked()) { |
|
|
|
|
|
|
|
double percent = Math.min(percentW, percentH); |
|
|
|
|
|
|
|
percentW = percentH = percent; |
|
|
|
|
|
|
|
} |
|
|
|
BoundsWidget wgt = (BoundsWidget) layout.getBoundsWidget(creator.toData()); |
|
|
|
BoundsWidget wgt = (BoundsWidget) layout.getBoundsWidget(creator.toData()); |
|
|
|
// 用当前的显示大小计算后调正具体位置
|
|
|
|
// 用当前的显示大小计算后调正具体位置
|
|
|
|
Rectangle wgtBound = creator.getBounds(); |
|
|
|
Rectangle wgtBound = creator.getBounds(); |
|
|
|