Skip to content

Commit

Permalink
Rename Separators to Deprecated and Dividers to Separators, see: phet…
Browse files Browse the repository at this point in the history
  • Loading branch information
marlitas committed Sep 13, 2022
1 parent 0e24857 commit 1c5d633
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions js/common/view/CollisionLabControlPanel.js
Original file line number Diff line number Diff line change
@@ -23,7 +23,7 @@
import merge from '../../../../phet-core/js/merge.js';
import AssertUtils from '../../../../phetcommon/js/AssertUtils.js';
import { Color, VBox } from '../../../../scenery/js/imports.js';
import HSeparator from '../../../../sun/js/HSeparator.js';
import HSeparatorDeprecated from '../../../../sun/js/HSeparatorDeprecated.js';
import Panel from '../../../../sun/js/Panel.js';
import collisionLab from '../../collisionLab.js';
import CollisionLabStrings from '../../CollisionLabStrings.js';
@@ -119,8 +119,8 @@ class CollisionLabControlPanel extends Panel {
// @protected {Checkbox} - 'Constant Size' Checkbox. Exposed to sub-classes for layouting.
this.constantSizeCheckbox = new CollisionLabCheckbox( ballsConstantSizeProperty, CollisionLabStrings.constantSize );

// HSeparator
const hSeparator = new HSeparator( CollisionLabConstants.CONTROL_PANEL_CONTENT_WIDTH, { stroke: Color.BLACK } );
// HSeparatorDeprecated
const hSeparator = new HSeparatorDeprecated( CollisionLabConstants.CONTROL_PANEL_CONTENT_WIDTH, { stroke: Color.BLACK } );

//----------------------------------------------------------------------------------------

0 comments on commit 1c5d633

Please sign in to comment.