Skip to content

Commit

Permalink
restore 'separator' tandems, phetsims/molecule-polarity#147
Browse files Browse the repository at this point in the history
  • Loading branch information
pixelzoom committed Sep 13, 2022
1 parent 2c13a51 commit 0fe037d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions js/common/view/BeakerControlPanel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,12 +65,12 @@ export default class BeakerControlPanel extends Panel {
} );
moleculeCountCheckbox.touchArea = ratioCheckbox.localBounds.dilatedXY( 10, 6 );

const divider = new HSeparator( {
tandem: options.tandem.createTandem( 'divider' )
const separator = new HSeparator( {
tandem: options.tandem.createTandem( 'separator' )
} );

const content = new VBox( {
children: [ ratioCheckbox, divider, moleculeCountCheckbox ],
children: [ ratioCheckbox, separator, moleculeCountCheckbox ],
align: 'left',
spacing: 10
} );
Expand Down

1 comment on commit 0fe037d

@pixelzoom
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.