We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2ac2e23 commit 2b11e94Copy full SHA for 2b11e94
app/src/processing/app/Base.java
@@ -928,7 +928,9 @@ public void actionPerformed(ActionEvent actionEvent) {
928
public boolean handleClose(Editor editor) {
929
930
if (editors.size() == 1) {
931
- handleQuit();
+ if (!handleQuit()) {
932
+ return false;
933
+ }
934
// Everything called after handleQuit will only affect OSX
935
editor.setVisible(false);
936
editors.remove(editor);
0 commit comments