diff --git a/app/Editor.java b/app/Editor.java index 48ae36f34..3348a18bc 100644 --- a/app/Editor.java +++ b/app/Editor.java @@ -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); diff --git a/app/EditorButtons.java b/app/EditorButtons.java index 0978d7326..3aa995de3 100644 --- a/app/EditorButtons.java +++ b/app/EditorButtons.java @@ -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;