Renamed Run -> Verify and Export -> Upload (shortcut changed to Command U).

This commit is contained in:
David A. Mellis 2006-01-15 22:05:41 +00:00
parent 9244ce7651
commit 893e8d1e32
2 changed files with 3 additions and 3 deletions

View File

@ -488,7 +488,7 @@ public class Editor extends JFrame
});
menu.add(saveAsMenuItem);
item = newJMenuItem("Export", 'E');
item = newJMenuItem("Upload to I/O Board", 'U');
item.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
handleExport();
@ -544,7 +544,7 @@ public class Editor extends JFrame
JMenuItem item;
JMenu menu = new JMenu("Sketch");
item = newJMenuItem("Run", 'R');
item = newJMenuItem("Verify/Compile", 'R');
item.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
handleRun(false);

View File

@ -37,7 +37,7 @@ import javax.swing.event.*;
public class EditorButtons extends JComponent implements MouseInputListener {
static final String title[] = {
"Compile", "Stop", "New", "Open", "Save", "Export", "Serial Monitor"
"Verify", "Stop", "New", "Open", "Save", "Upload to I/O Board", "Serial Monitor"
};
static final int BUTTON_COUNT = title.length;