added images

git-svn-id: http://svn.3splooges.com/romraider-arch/trunk@482 d2e2e1cd-ba16-0410-be16-b7c4453c7c2d
This commit is contained in:
kascade 2007-01-28 00:06:29 +00:00
parent ff18332824
commit f6af41dc0a
3 changed files with 2 additions and 2 deletions

BIN
graphics/logger_restart.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 766 B

BIN
graphics/logger_stop.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 468 B

View File

@ -544,7 +544,7 @@ public final class EcuLogger extends JFrame implements WindowListener, PropertyC
JPanel comboBoxPanel = new JPanel(new FlowLayout());
comboBoxPanel.add(new JLabel("COM Port:"));
comboBoxPanel.add(portsComboBox);
JButton resetConnectionButton = new JButton(new ImageIcon("./graphics/reload-20x20.png"));
JButton resetConnectionButton = new JButton(new ImageIcon("./graphics/logger_restart.png"));
resetConnectionButton.setPreferredSize(new Dimension(25, 25));
resetConnectionButton.setToolTipText("Reset ECU Connection");
resetConnectionButton.addActionListener(new ActionListener() {
@ -558,7 +558,7 @@ public final class EcuLogger extends JFrame implements WindowListener, PropertyC
}
});
comboBoxPanel.add(resetConnectionButton);
JButton disconnectButton = new JButton(new ImageIcon("./graphics/stop-20x20.png"));
JButton disconnectButton = new JButton(new ImageIcon("./graphics/logger_stop.png"));
disconnectButton.setPreferredSize(new Dimension(25, 25));
disconnectButton.setToolTipText("Disconnect from ECU");
disconnectButton.addActionListener(new ActionListener() {