Skip to content

Commit

Permalink
remove the Restart menu used during debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
benfry committed Feb 10, 2023
1 parent 2394a54 commit be17e94
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 11 deletions.
15 changes: 7 additions & 8 deletions app/src/processing/app/ui/Editor.java
Original file line number Diff line number Diff line change
Expand Up @@ -697,15 +697,14 @@ protected JMenu buildFileMenu(JMenuItem[] exportItems) {
item.addActionListener(e -> handlePrint());
fileMenu.add(item);

{
fileMenu.addSeparator();

item = new JMenuItem("Restart");
item.addActionListener(e -> base.handleRestart());
fileMenu.add(item);
}
/*
fileMenu.addSeparator();
item = new JMenuItem("Restart");
item.addActionListener(e -> base.handleRestart());
fileMenu.add(item);
*/

// Mac OS X already has its own preferences and quit menu.
// macOS already has its own preferences and quit menu.
// That's right! Think different, b*tches!
if (!Platform.isMacOS()) {
fileMenu.addSeparator();
Expand Down
4 changes: 1 addition & 3 deletions todo.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ X also fix several that still had tabs instead of spaces
X update to JDK 17.0.6+10 from https://adoptium.net/
X fix inversion of handleSaveAs() introduced in:
X https://github.com/processing/processing4/commit/aef561a8eb8fa894c5a22c611279a5092e2dbb28
X remove temporary 'restart' menu before release

manager
X add 'exports' to the library parameters
Expand All @@ -29,9 +30,6 @@ X Improved documentation for lerpColor() function
X https://github.com/processing/processing4/pull/655


_ remove temporary 'restart' menu before release


manager
_ if contrib (library only?) folder name changes on update, old lib not removed
_ Updates requiring a reboot give the false impression that they failed (in the updates tab)
Expand Down

0 comments on commit be17e94

Please sign in to comment.