mirror of
https://github.com/arduino/Arduino.git
synced 2025-01-30 19:52:13 +01:00
Renamed Run -> Verify and Export -> Upload (shortcut changed to Command U).
This commit is contained in:
parent
9244ce7651
commit
893e8d1e32
@ -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);
|
||||
|
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user