mirror of
https://github.com/processing/processing4.git
synced 2026-02-14 19:05:34 +01:00
command line starting to work again
This commit is contained in:
@@ -60,32 +60,6 @@ public class JavaMode extends Mode {
|
||||
Base.showError("Problem loading keywords",
|
||||
"Could not load keywords.txt, please re-install Processing.", e);
|
||||
}
|
||||
|
||||
/*
|
||||
item = newJMenuItem("Export", 'E');
|
||||
if (editor != null) {
|
||||
item.addActionListener(new ActionListener() {
|
||||
public void actionPerformed(ActionEvent e) {
|
||||
editor.handleExport();
|
||||
}
|
||||
});
|
||||
} else {
|
||||
item.setEnabled(false);
|
||||
}
|
||||
fileMenu.add(item);
|
||||
|
||||
item = newJMenuItemShift("Export Application", 'E');
|
||||
if (editor != null) {
|
||||
item.addActionListener(new ActionListener() {
|
||||
public void actionPerformed(ActionEvent e) {
|
||||
editor.handleExportApplication();
|
||||
}
|
||||
});
|
||||
} else {
|
||||
item.setEnabled(false);
|
||||
}
|
||||
fileMenu.add(item);
|
||||
*/
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user