Skip to content

Commit b0a6250

Browse files
committed
additional notes about quit
1 parent 0127512 commit b0a6250

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

core/src/processing/core/ThinkDifferent.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ static public void init(final PApplet sketch) {
6161
public void handleQuitRequestWith(QuitEvent event, QuitResponse response) {
6262
sketch.exit();
6363
if (!attemptedQuit) {
64-
response.cancelQuit(); // we'll quit manually
64+
response.cancelQuit(); // tell OS X we'll handle this
6565
attemptedQuit = true;
6666
} else {
6767
response.performQuit(); // just force it this time

core/todo.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ X curveVertex() does not work with FX2D renderer
33
X https://github.com/processing/processing/issues/3960
44
X hide menu bar on OS X when FX2D is running full screen
55
X add quotes to the necessary parameters in the size() error messages
6+
_ when calling exit(), if sketch has halted w/ exception, force the quit
7+
_ otherwise have to double-quit with cmd-q on OS X
8+
_ simple test case: using size() inside setup() from Eclipse
69
_ figure our size(img.width, img.height) situation
710
_ just make loadImage() work in settings, update the wiki and reference
811

0 commit comments

Comments
 (0)