Browse Source

Merge pull request #1467 in BA/design from ~MOMEAK/design9.0:release/9.0 to release/9.0

* commit 'dac07f6518731904df32d0d8d1319ff26d9f03b4':
  REPORT-4386 界面,超链-邮件,编辑框内容输入后显示不全
master
superman 7 years ago
parent
commit
5045ddb8c0
  1. 4
      designer_base/src/com/fr/design/javascript/EmailPane.java

4
designer_base/src/com/fr/design/javascript/EmailPane.java

@ -27,7 +27,7 @@ public class EmailPane extends FurtherBasicBeanPane<EmailJavaScript> {
protected UILabel tipsPane2;
protected JPanel centerPane;
protected UICheckBox showTplContent;
private JTextPane mainTextEditor;
private JTextArea mainTextEditor;
public EmailPane() {
this.initComponents();
@ -44,7 +44,7 @@ public class EmailPane extends FurtherBasicBeanPane<EmailJavaScript> {
UILabel mainTextLabel = new UILabel(Inter.getLocText("FR-Designer_EmailPane-mailContent") + ":");
mainTextLabel.setHorizontalAlignment(SwingConstants.RIGHT);
mainTextLabel.setVerticalAlignment(SwingConstants.TOP);
JScrollPane scrollPane = new JScrollPane(mainTextEditor = new JTextPane());
JScrollPane scrollPane = new JScrollPane(mainTextEditor = new JTextArea());
scrollPane.setBorder(null);
double fill = TableLayout.FILL;
double preferred = TableLayout.PREFERRED;

Loading…
Cancel
Save