Browse Source

无JIRA任务 合并丢失,build failed

master
zhouping 7 years ago
parent
commit
26552044ee
  1. 5
      designer_base/src/com/fr/design/gui/ilable/UILabel.java

5
designer_base/src/com/fr/design/gui/ilable/UILabel.java

@ -29,6 +29,11 @@ public class UILabel extends JLabel {
super(text);
}
public UILabel(String text, boolean enable) {
super(text);
this.setEnabled(enable);
}
public UILabel(Icon image, int horizontalAlignment) {
super(image, horizontalAlignment);
}

Loading…
Cancel
Save