Browse Source

无JIRA任务 可换行文本控件的颜色不符合预期

【问题原因】
 setEnable(false)会导致文字颜色始终为灰色

【改动思路】
使用setEditable替换原来的setEnable
feature/x
Starryi 3 years ago
parent
commit
2f1b52bb97
  1. 2
      designer-base/src/main/java/com/fr/design/mainframe/theme/edit/ui/LabelUtils.java

2
designer-base/src/main/java/com/fr/design/mainframe/theme/edit/ui/LabelUtils.java

@ -37,7 +37,7 @@ public class LabelUtils {
Font newFont = FRFont.getInstance(tipLabel.getFont().getFontName(), Font.PLAIN, 12);
tipLabel.setFont(newFont);
tipLabel.setBorder(BorderFactory.createEmptyBorder());
tipLabel.setEnabled(false);
tipLabel.setEditable(false);
tipLabel.setText(title);
tipLabel.setLineWrap(true);
tipLabel.setWrapStyleWord(true);

Loading…
Cancel
Save