mirror of
https://github.com/esp8266/Arduino.git
synced 2025-08-05 13:16:13 +03:00
Fixed missing error message
This commit is contained in:
@@ -76,7 +76,7 @@ public class ContributionManagerUI extends InstallerJDialog {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public ContributionManagerUI(Frame parent) {
|
public ContributionManagerUI(Frame parent) {
|
||||||
super(parent, "Boards Manager", Dialog.ModalityType.APPLICATION_MODAL);
|
super(parent, _("Boards Manager"), Dialog.ModalityType.APPLICATION_MODAL);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setIndexer(ContributionsIndexer indexer) {
|
public void setIndexer(ContributionsIndexer indexer) {
|
||||||
|
@@ -34,9 +34,6 @@ import processing.app.Theme;
|
|||||||
|
|
||||||
import javax.swing.*;
|
import javax.swing.*;
|
||||||
import javax.swing.border.EmptyBorder;
|
import javax.swing.border.EmptyBorder;
|
||||||
import javax.swing.event.TableModelEvent;
|
|
||||||
import javax.swing.event.TableModelListener;
|
|
||||||
import javax.swing.table.TableCellRenderer;
|
|
||||||
import javax.swing.table.TableColumn;
|
import javax.swing.table.TableColumn;
|
||||||
import javax.swing.table.TableColumnModel;
|
import javax.swing.table.TableColumnModel;
|
||||||
import java.awt.*;
|
import java.awt.*;
|
||||||
@@ -160,7 +157,6 @@ public abstract class InstallerJDialog<T> extends JDialog {
|
|||||||
|
|
||||||
errorMessage = new JLabel("");
|
errorMessage = new JLabel("");
|
||||||
errorMessage.setForeground(Color.RED);
|
errorMessage.setForeground(Color.RED);
|
||||||
errorMessage.setVisible(false);
|
|
||||||
|
|
||||||
{
|
{
|
||||||
JButton cancelButton = new JButton(_("Cancel"));
|
JButton cancelButton = new JButton(_("Cancel"));
|
||||||
|
Reference in New Issue
Block a user