Browse Source

REPORT-36778 【配合平台】版本号规范FR适配任务 去除多处的空格

feature/big-screen
Henry.Wang 4 years ago
parent
commit
7b706e11c0
  1. 7
      designer-base/src/main/java/com/fr/design/actions/help/AboutPane.java

7
designer-base/src/main/java/com/fr/design/actions/help/AboutPane.java

@ -303,12 +303,13 @@ public class AboutPane extends JPanel {
public BoxCenterAlignmentCopyablePane(String title, String copyText, final String[] descriptions) {
setLayout(FRGUIPaneFactory.createBorderLayout());
JPanel centerPane = FRGUIPaneFactory.createNormalFlowInnerContainer_S_Pane();
this.label = new UILabel(title);
if (!ComparatorUtils.equals(title, StringUtils.EMPTY)) {
this.label = new UILabel(title);
centerPane.add(label);
}
this.textField = new UILabel(copyText);
textField.setBackground(null);
textField.setBorder(null);
centerPane.add(label);
centerPane.add(textField);
textField.addMouseListener(new MouseAdapter() {
@Override

Loading…
Cancel
Save