mirror of
https://github.com/arduino/Arduino.git
synced 2025-02-07 01:54:26 +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);
|
menu.add(saveAsMenuItem);
|
||||||
|
|
||||||
item = newJMenuItem("Export", 'E');
|
item = newJMenuItem("Upload to I/O Board", 'U');
|
||||||
item.addActionListener(new ActionListener() {
|
item.addActionListener(new ActionListener() {
|
||||||
public void actionPerformed(ActionEvent e) {
|
public void actionPerformed(ActionEvent e) {
|
||||||
handleExport();
|
handleExport();
|
||||||
@ -544,7 +544,7 @@ public class Editor extends JFrame
|
|||||||
JMenuItem item;
|
JMenuItem item;
|
||||||
JMenu menu = new JMenu("Sketch");
|
JMenu menu = new JMenu("Sketch");
|
||||||
|
|
||||||
item = newJMenuItem("Run", 'R');
|
item = newJMenuItem("Verify/Compile", 'R');
|
||||||
item.addActionListener(new ActionListener() {
|
item.addActionListener(new ActionListener() {
|
||||||
public void actionPerformed(ActionEvent e) {
|
public void actionPerformed(ActionEvent e) {
|
||||||
handleRun(false);
|
handleRun(false);
|
||||||
|
@ -37,7 +37,7 @@ import javax.swing.event.*;
|
|||||||
public class EditorButtons extends JComponent implements MouseInputListener {
|
public class EditorButtons extends JComponent implements MouseInputListener {
|
||||||
|
|
||||||
static final String title[] = {
|
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;
|
static final int BUTTON_COUNT = title.length;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user