Skip to content

Commit

Permalink
fix some Global options Noes, phetsims/phet-core#71
Browse files Browse the repository at this point in the history
  • Loading branch information
zepumph committed Oct 17, 2019
1 parent ba768c3 commit 8b83eaf
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions js/common/view/MenuOptionsNode.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ define( require => {

// modules
const inherit = require( 'PHET_CORE/inherit' );
const merge = require( 'PHET_CORE/merge' );
const OptionsDialog = require( 'JOIST/OptionsDialog' );
const ProjectorModeCheckbox = require( 'JOIST/ProjectorModeCheckbox' );
const RSColorProfile = require( 'RUTHERFORD_SCATTERING/common/RSColorProfile' );
Expand All @@ -26,11 +25,11 @@ define( require => {

const projectorCheckbox = new ProjectorModeCheckbox( RSColorProfile );

VBox.call( this, merge( {
VBox.call( this, {
children: [ projectorCheckbox ],
spacing: OptionsDialog.DEFAULT_SPACING,
align: 'left'
} ) );
} );
}

rutherfordScattering.register( 'MenuOptionsNode', MenuOptionsNode );
Expand Down

0 comments on commit 8b83eaf

Please sign in to comment.