Browse Source

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

* commit '32757ebd7a1a69d156902c19faf8d4b26936a88a':
  REPORT-6096 TAB页中组件在复制粘贴后会位移 tab嵌套的情况
superman 8 years ago
parent
commit
7ee9da739c
  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