Skip to content

Commit

Permalink
Go immediately to an initialScreen, see #717
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanolson committed May 27, 2021
1 parent 6324fbb commit a8b1350
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/Sim.js
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ define( function( require ) {
options.rootRenderer = phet.chipper.queryParameters.rootRenderer || options.rootRenderer;

// @public (joist-internal) - True if the home screen is showing
this.showHomeScreenProperty = new Property( options.showHomeScreen, {
this.showHomeScreenProperty = new Property( initialScreen === 0 ? options.showHomeScreen : false, {
tandem: tandem.createTandem( 'sim.showHomeScreenProperty' ),
phetioValueType: TBoolean
} );
Expand Down

0 comments on commit a8b1350

Please sign in to comment.