Browse Source

Merge pull request #1531 in BA/design from ~YAOH.WU/a_design_0811:release/8.0 to release/8.0

* commit '817783516683bd768895ec80f6154c29193ac658':
  REPORT-6096 TAB页中组件在复制粘贴后会位移 tab嵌套的情况
superman 8 years ago
parent
commit
4f061d22a4
  1. 7
      designer_form/src/com/fr/design/mainframe/FormSelectionUtils.java

7
designer_form/src/com/fr/design/mainframe/FormSelectionUtils.java

@ -142,6 +142,13 @@ public class FormSelectionUtils {
}
}
}
Component[] components = copiedCreator.getComponents();
for (Component component : components) {
try {
resetTabSub2RealSize((XCreator) component);
} catch (ClassCastException ignored) {
}
}
}
/**

Loading…
Cancel
Save