From 1c5d6334b00d40161f5d498ba61f23f40824e305 Mon Sep 17 00:00:00 2001 From: Marla Schulz Date: Tue, 13 Sep 2022 12:36:49 -0700 Subject: [PATCH] Rename Separators to Deprecated and Dividers to Separators, see: https://github.com/phetsims/scenery/issues/1448 --- js/common/view/CollisionLabControlPanel.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/js/common/view/CollisionLabControlPanel.js b/js/common/view/CollisionLabControlPanel.js index 34a320a..a69bedf 100644 --- a/js/common/view/CollisionLabControlPanel.js +++ b/js/common/view/CollisionLabControlPanel.js @@ -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 } ); //----------------------------------------------------------------------------------------