mirror of
https://github.com/processing/processing4.git
synced 2026-02-04 06:09:17 +01:00
fixed all compile errors, what's next?
This commit is contained in:
@@ -562,7 +562,7 @@ public class PdeEditor extends JFrame
|
||||
item = newJMenuItem("Run", 'R');
|
||||
item.addActionListener(new ActionListener() {
|
||||
public void actionPerformed(ActionEvent e) {
|
||||
doRun(false);
|
||||
handleRun(false);
|
||||
}
|
||||
});
|
||||
menu.add(item);
|
||||
@@ -570,7 +570,7 @@ public class PdeEditor extends JFrame
|
||||
item = newJMenuItem("Present", 'R', true);
|
||||
item.addActionListener(new ActionListener() {
|
||||
public void actionPerformed(ActionEvent e) {
|
||||
doRun(true);
|
||||
handleRun(true);
|
||||
}
|
||||
});
|
||||
menu.add(item);
|
||||
@@ -945,7 +945,7 @@ public class PdeEditor extends JFrame
|
||||
}
|
||||
|
||||
|
||||
public void doRun(boolean present) {
|
||||
public void handleRun(boolean present) {
|
||||
doClose();
|
||||
running = true;
|
||||
buttons.run();
|
||||
|
||||
Reference in New Issue
Block a user