From 9ab388d64d0b9d3bc502f2202bddbbbcc44466d6 Mon Sep 17 00:00:00 2001 From: Ben Fry Date: Tue, 19 May 2015 14:44:19 -0400 Subject: [PATCH] this should be how we want it to work --- core/src/processing/core/ThinkDifferent.java | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/core/src/processing/core/ThinkDifferent.java b/core/src/processing/core/ThinkDifferent.java index 2b6647a38..4508774ba 100644 --- a/core/src/processing/core/ThinkDifferent.java +++ b/core/src/processing/core/ThinkDifferent.java @@ -88,14 +88,8 @@ public class ThinkDifferent { application.setQuitHandler(new QuitHandler() { public void handleQuitRequestWith(QuitEvent event, QuitResponse response) { sketch.exit(); - response.performQuit(); - /* - if (base.handleQuit()) { - response.performQuit(); - } else { - response.cancelQuit(); - } - */ + response.cancelQuit(); // we'll quit manually + //response.performQuit(); // can't just quit out willy nilly } });