Skip to content

Commit be17e94

Browse files
committed
remove the Restart menu used during debugging
1 parent 2394a54 commit be17e94

File tree

2 files changed

+8
-11
lines changed

2 files changed

+8
-11
lines changed

Diff for: app/src/processing/app/ui/Editor.java

+7-8
Original file line numberDiff line numberDiff line change
@@ -697,15 +697,14 @@ protected JMenu buildFileMenu(JMenuItem[] exportItems) {
697697
item.addActionListener(e -> handlePrint());
698698
fileMenu.add(item);
699699

700-
{
701-
fileMenu.addSeparator();
702-
703-
item = new JMenuItem("Restart");
704-
item.addActionListener(e -> base.handleRestart());
705-
fileMenu.add(item);
706-
}
700+
/*
701+
fileMenu.addSeparator();
702+
item = new JMenuItem("Restart");
703+
item.addActionListener(e -> base.handleRestart());
704+
fileMenu.add(item);
705+
*/
707706

708-
// Mac OS X already has its own preferences and quit menu.
707+
// macOS already has its own preferences and quit menu.
709708
// That's right! Think different, b*tches!
710709
if (!Platform.isMacOS()) {
711710
fileMenu.addSeparator();

Diff for: todo.txt

+1-3
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ X also fix several that still had tabs instead of spaces
66
X update to JDK 17.0.6+10 from https://adoptium.net/
77
X fix inversion of handleSaveAs() introduced in:
88
X https://github.com/processing/processing4/commit/aef561a8eb8fa894c5a22c611279a5092e2dbb28
9+
X remove temporary 'restart' menu before release
910

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

3132

32-
_ remove temporary 'restart' menu before release
33-
34-
3533
manager
3634
_ if contrib (library only?) folder name changes on update, old lib not removed
3735
_ Updates requiring a reboot give the false impression that they failed (in the updates tab)

0 commit comments

Comments
 (0)