From f5608383e5e09a79bfa79ed0634cdceef657831f Mon Sep 17 00:00:00 2001 From: Jonathan Olson Date: Wed, 18 Apr 2018 22:34:03 -0600 Subject: [PATCH] Moving the default passiveEvents to Scenery (since it should be the default, AND I don't want to have a two-common-repo maintenance release). See https://github.com/phetsims/scenery/issues/770 --- js/Sim.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/js/Sim.js b/js/Sim.js index 65637ed4..1c46db11 100644 --- a/js/Sim.js +++ b/js/Sim.js @@ -341,8 +341,7 @@ define( function( require ) { allowWebGL: phet.chipper.queryParameters.webgl, accessibility: phet.chipper.accessibility, isApplication: false, - assumeFullWindow: true, // a bit faster if we can assume no coordinate translations are needed for the display. - passiveEvents: false // see https://github.com/phetsims/scenery/issues/770 + assumeFullWindow: true // a bit faster if we can assume no coordinate translations are needed for the display. } ); // When the sim is inactive, make it non-interactive, see https://github.com/phetsims/scenery/issues/414