|
|
|
@ -14,6 +14,7 @@ import com.fr.stable.StringUtils;
|
|
|
|
|
|
|
|
|
|
import javax.swing.BorderFactory; |
|
|
|
|
import javax.swing.JPanel; |
|
|
|
|
import javax.swing.JTextField; |
|
|
|
|
import javax.swing.SwingConstants; |
|
|
|
|
import javax.swing.SwingWorker; |
|
|
|
|
import java.awt.BorderLayout; |
|
|
|
@ -164,9 +165,14 @@ public class OnlineWidgetRepoPane extends BasicPane {
|
|
|
|
|
tipLabel1.setForeground(Color.decode("#8F8F92")); |
|
|
|
|
UILabel tipLabel2 = tipLabel(Toolkit.i18nText("Fine-Design_Share_Internet_Connect_Failed_Tip2")); |
|
|
|
|
tipLabel2.setForeground(Color.decode("#8F8F92")); |
|
|
|
|
UILabel tipLabel3 = tipLabel(MARKET_URL); |
|
|
|
|
tipLabel3.setForeground(Color.decode("#8F8F92")); |
|
|
|
|
|
|
|
|
|
JTextField tipLabel3 = new JTextField(MARKET_URL); |
|
|
|
|
tipLabel3.setHorizontalAlignment(JTextField.CENTER); |
|
|
|
|
tipLabel3.setPreferredSize(new Dimension(240, 20)); |
|
|
|
|
tipLabel3.setEditable(false); |
|
|
|
|
tipLabel3.setForeground(Color.decode("#8F8F92")); |
|
|
|
|
tipLabel3.setBackground(null); |
|
|
|
|
tipLabel3.setBorder(null); |
|
|
|
|
|
|
|
|
|
UILabel emptyLabel = tipLabel(StringUtils.EMPTY); |
|
|
|
|
panel.add(uiLabel); |
|
|
|
|